mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
23 lines
241 B
NASM
23 lines
241 B
NASM
|
|
;--- temp macro parameter expansion problem in v2.08
|
|
|
|
.386
|
|
.model flat, stdcall
|
|
option casemap:none
|
|
|
|
POINT struct
|
|
x dd ?
|
|
y dd ?
|
|
POINT ends
|
|
|
|
defv macro var, init
|
|
var POINT init
|
|
endm
|
|
|
|
.data
|
|
|
|
defv xxx,{<1,2>}
|
|
|
|
end
|
|
|