Implement 0x/0o/0b number prefixes (#1533)

This commit is contained in:
Sylvie
2024-10-08 15:56:00 -04:00
committed by GitHub
parent cf85146353
commit a13723c523
3 changed files with 41 additions and 7 deletions

View 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