mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
7 lines
105 B
NASM
7 lines
105 B
NASM
MACRO m
|
|
def x = (\1) * 2
|
|
println "{d:x}"
|
|
ENDM
|
|
m 5 ; prints 10
|
|
m \\2, 6 ; should not prints 12
|