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
28 lines
402 B
NASM
28 lines
402 B
NASM
test: macro
|
|
; Test the rpn system, as well as the linker...
|
|
dl \1 + zero
|
|
|
|
; ...as well as the constexpr system
|
|
result\@ equ \1
|
|
println "\1 = {result\@}"
|
|
endm
|
|
|
|
section "test", ROM0[0]
|
|
|
|
test 1 << 1
|
|
test 1 << 32
|
|
test 1 << 9001
|
|
test -1 << 1
|
|
test -1 << 32
|
|
test -1 << -9001
|
|
|
|
test -1 >> 1
|
|
test -1 >> 32
|
|
test -1 >> 9001
|
|
test -4 >> 1
|
|
test -4 >> 2
|
|
test -1 >> -9001
|
|
|
|
SECTION "Zero", ROM0[0]
|
|
zero:
|