mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
20 lines
212 B
NASM
20 lines
212 B
NASM
print: MACRO
|
|
PRINTT "\1"
|
|
PRINTT "\n"
|
|
ENDM
|
|
|
|
print John "Danger" Smith
|
|
print \\A\nB
|
|
print C\
|
|
D
|
|
print E\!F ; illegal character escape
|
|
|
|
|
|
iprint: MACRO
|
|
PRINTT "{\1}"
|
|
PRINTT "\n"
|
|
ENDM
|
|
|
|
s EQUS "hello"
|
|
iprint s
|