mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Fixes #669 Closes #368 Closes #624 Deprecate PRINTT, PRINTV, PRINTI, and PRINTF Default STRFMT("%f") to 5 fractional digits like "{f:}" Any use of string formatting will share this default
18 lines
193 B
NASM
18 lines
193 B
NASM
print1: MACRO
|
|
PRINTLN "\1"
|
|
ENDM
|
|
|
|
print1 John "Danger" Smith
|
|
print1 \\A\nB
|
|
print1 C\
|
|
D
|
|
print1 E\!F ; illegal character escape
|
|
|
|
|
|
iprint: MACRO
|
|
PRINTLN "{\1}"
|
|
ENDM
|
|
|
|
s EQUS "hello"
|
|
iprint s
|