mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
- Escaped commas "\," inside strings - `name: MACRO` syntax - `__FILE__` and `__LINE__` - `-H/--nop-after-halt` and `-l/--auto-ldh` on by default
13 lines
152 B
NASM
13 lines
152 B
NASM
MACRO new ; comment
|
|
println "in with the ", \1
|
|
ENDM ; comment
|
|
|
|
new 2
|
|
|
|
old: MACRO ; comment
|
|
println "out with the ", \1
|
|
ENDM ; comment
|
|
|
|
old 1
|
|
|