1*
2* Constants initialization
3* See also long.s, space.s, field.s
4*
5	.global binary, octal, hex, field
6binary:	.word	11b, 0100B
7octal:	.word	011q, 12q, 013Q
8hex:	.word	0Fh, 10H
9field:	.field	3, 3
10	.field	8, 6
11	.field	16, 5
12	.field	01234h,20
13	.field	01234h,32
14	.global byte, word, xlong, long, int
15byte:	.byte	0AAh, 0BBh
16word:	.word	0CCCh
17xlong:	.xlong	0EEEEFFFh
18long:	.long	0EEEEFFFFh
19int:	.int	0DDDDh
20	.global xfloat, float
21xfloat:	.xfloat	1.99999
22float:	.float	1.99999
23	.global string, pstring
24string	.string "abcd"
25	.string	"abc","defg"
26	.string	36 + 12
27pstring	.pstring "abcd"
28	.pstring "abc","defg"
29
30	.global DAT1, DAT2, DAT3, DAT4
31DAT1:	.long 0ABCDh, 'A' + 100h, 'g', 'o'
32xlong?:	.xlong DAT1, 0AABBCCDDh
33DAT2:	.word 0
34DAT3:	.long 012345678h
35	.word 0
36	.xlong 0AABBCCDDh
37DAT4:
38	.end
39