mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-07-24 10:25:42 -04: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
|