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
22 lines
418 B
NASM
22 lines
418 B
NASM
SECTION "sec", ROM0
|
|
|
|
xstrsub: MACRO
|
|
PRINTLN STRSUB(\1, \2, \3)
|
|
ENDM
|
|
|
|
xstrsub "ABC", 1, 1
|
|
xstrsub "ABC", 2, 1
|
|
xstrsub "ABC", 3, 1
|
|
xstrsub "ABC", 1, 2
|
|
xstrsub "ABC", 2, 2
|
|
xstrsub "ABC", 2, 32
|
|
xstrsub "ABC", 2, 300
|
|
xstrsub "ABC", 0, 300
|
|
xstrsub "ABC", 4, 0
|
|
xstrsub "ABC", 4, 1
|
|
xstrsub "カタカナ", 1, 2
|
|
xstrsub "カタカナ", 3, 2
|
|
xstrsub "カタカナ", 3, 10
|
|
xstrsub "g̈", 1, 1
|
|
xstrsub "g̈", 1, 2
|