1	.text
2	.section .init0, "x"
3	.global _start
4_start:
5
6# byte aligned
7	.align 0
8	.byte byte_sym
9
10# short aligned
11	.align 1
12	.short short_sym
13
14# word aligned
15	.align 2
16	.long  long_sym
17
18# now lets try some unaligned words and halfwords
19	.byte byte_sym
20	.2byte short_sym
21	.4byte  long_sym
22
23#	.align 2
24#	nop
25