1 ;Testname=test; Arguments=-fbin -oradix.bin; Files=stdout stderr radix.bin
3 ;; Integer constants...
6 dd 01010_0101 ; Decimal (*not* octal!)
7 dd 0d1010_0101
; Decimal
8 dd 0t1010_0101
; Decimal
9 dd 1010_0101d
; Decimal
10 dd 1010_0101t
; Decimal
12 dd 0b1010_0101 ; Binary
13 dd 0y1010_0101
; Binary
14 dd 1010_0101b ; Binary
15 dd 1010_0101y
; Binary
17 dd 0o1010_0101
; Octal
18 dd 0q1010_0101
; Octal
40 ;; Floating-point constants
41 ;; All of these should output B4A21147
42 dd 3.7282705e+4 ; Decimal
43 dd 00003.7282705e+4 ; Decimal
44 dd 0d3.7282705e
+4
; Decimal
45 dd 0t3.7282705e
+4
; Decimal
47 dd 0x1.23456789p
+15 ; Hex
48 dd 0h1.23456789p
+15 ; Hex
50 dd 0o1.10642547422p
+15 ; Octal
51 dd 0q1.10642547422p
+15 ; Octal
53 dd 0b1.0010_0011_0100_0101_0110_0111_1000_1001p
+15 ; Binary
54 dd 0y1.0010_0011_0100_0101_0110_0111_1000_1001p
+15 ; Binary