summaryrefslogtreecommitdiff
path: root/test/dup.asm
blob: 723da48bbe42e16fd5f53065abad770475ebd7e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
	bits 32

	db 33
	db (44)
;	db (44,55)	-- error
	db %(44,55)
	db %('XX','YY')
	db ('AA')
	db %('BB')
	db ?
	db 6 dup (33)
	db 6 dup (33, 34)
	db 6 dup (33, 34), 35
	db 7 dup (99)
	db 7 dup dword (?, word ?,?)
	dw byte (?,44)

	dw 3 dup (0xcc, 4 dup byte ('PQR'), ?), 0xabcd

	dd 16 dup (0xaaaa, ?, 0xbbbbbb)
	dd 64 dup (?)