mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-25 18:10:23 +08:00
19 lines
203 B
NASM
19 lines
203 B
NASM
|
%imacro proc 1
|
||
|
%push proc
|
||
|
%assign %$arg 1
|
||
|
%endmacro
|
||
|
|
||
|
%imacro arg 0-1 1
|
||
|
%assign %$arg %1+%$arg
|
||
|
%endmacro
|
||
|
|
||
|
%imacro endproc 0
|
||
|
%pop
|
||
|
%endmacro
|
||
|
|
||
|
;----------------------------
|
||
|
|
||
|
proc Test
|
||
|
%$ARG arg
|
||
|
endproc
|