mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Implement 0x/0o/0b number prefixes (#1533)
This commit is contained in:
16
test/asm/number-prefixes.asm
Normal file
16
test/asm/number-prefixes.asm
Normal file
@@ -0,0 +1,16 @@
|
||||
MACRO test
|
||||
assert (\1) == (\2)
|
||||
ENDM
|
||||
|
||||
test 0xDEADbeef, $DEADbeef
|
||||
test 0o755, &755
|
||||
test 0b101010, %101010
|
||||
|
||||
test 0XcafeBABE, $cafeBABE
|
||||
test 0O644, &644
|
||||
test 0B11100100, %11100100
|
||||
|
||||
pusho b.X
|
||||
test 0b.X.X, %.X.X
|
||||
test 0BX.X., %X.X.
|
||||
popo
|
||||
Reference in New Issue
Block a user