Files
rgbds/test/asm/macro-syntax.asm
Rangi 46e67ee078 Remove deprecated RGBASM features (#1215)
- Escaped commas "\," inside strings
- `name: MACRO` syntax
- `__FILE__` and `__LINE__`
- `-H/--nop-after-halt` and `-l/--auto-ldh` on by default
2023-11-04 23:22:46 +01:00

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