mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 02:02:06 +00:00
21 lines
257 B
NASM
21 lines
257 B
NASM
macro mac
|
|
warn "from macro"
|
|
endm
|
|
mac ; normal
|
|
|
|
macro? quiet
|
|
warn "from quiet macro"
|
|
endm
|
|
quiet
|
|
rept? 1
|
|
warn "from quiet rept"
|
|
endr
|
|
for? x, 1
|
|
warn "from quiet for (x={d:x})"
|
|
endr
|
|
include? "loud-backtrace.inc"
|
|
macro loud
|
|
warn "from loud macro"
|
|
endm
|
|
mac?
|