blob: 35dbceefadd93adda3c1080b53f574bfe93f4c94 [file] [log] [blame]
H. Peter Anvinbea0bbb2007-10-22 16:53:48 -07001 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
7
8 dd 0b1010_0101 ; Binary
9 dd 0y1010_0101 ; Binary
10 dd 1010_0101b ; Binary
11 dd 1010_0101y ; Binary
12
13 dd 0o1010_0101 ; Octal
14 dd 0q1010_0101 ; Octal
15 dd 1010_0101o ; Octal
16 dd 1010_0101q ; Octal
17
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
23