mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
17 lines
232 B
NASM
17 lines
232 B
NASM
mac: MACRO
|
|
println "'mac \#':"
|
|
for i, _NARG
|
|
println strfmt("\\%d: <\1>", i+1)
|
|
shift
|
|
endr
|
|
println
|
|
ENDM
|
|
|
|
mac /* block
|
|
...comment */ ; comment
|
|
mac /*a*/ 1 , 2 /*b*/
|
|
mac \
|
|
c, d
|
|
mac 1, 2 + /* another ;
|
|
; comment */ 2, 3
|