More consistent handling of radix letters
[nasm.git] / test / radix.asm
blob35dbceefadd93adda3c1080b53f574bfe93f4c94
1 dd 1010_0101 ; Decimal
2 dd 01010_0101 ; Decimal (*not* octal!)
3 dd 0d1010_0101 ; Decimal
4 dd 0t1010_0101 ; Decimal
5 dd 1010_0101d ; Decimal
6 dd 1010_0101t ; Decimal
8 dd 0b1010_0101 ; Binary
9 dd 0y1010_0101 ; Binary
10 dd 1010_0101b ; Binary
11 dd 1010_0101y ; Binary
13 dd 0o1010_0101 ; Octal
14 dd 0q1010_0101 ; Octal
15 dd 1010_0101o ; Octal
16 dd 1010_0101q ; Octal
18 dd 0h1010_0101 ; Hex
19 dd 0x1010_0101 ; Hex
20 dd 1010_0101h ; Hex
21 dd 1010_0101x ; Hex
22 dd $1010_0101 ; Hex