mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
16 lines
215 B
NASM
16 lines
215 B
NASM
|
|
old: MACRO ; comment
|
|
println "out with the ", \1
|
|
ENDM ; comment
|
|
|
|
MACRO new ; comment
|
|
println "in with the ", \1
|
|
ENDM ; comment
|
|
|
|
old 1
|
|
new 2
|
|
|
|
bad1: MACRO bad2 ; comment
|
|
println "which?"
|
|
ENDM ; comment
|