0
0
This repository has been archived on 2024-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
legacy-code/test/integer-prefixes.jce
2022-09-01 19:02:38 +02:00

12 lines
121 B
Plaintext

mov $dec 42
echo $dec "\n"
mov $hex 0x2A
echo $hex "\n"
mov $oct 0o52
echo $oct "\n"
mov $bin 0b101010
echo $bin "\n"