1	.text
2
3	.space	0x1000
4
5	.ent	foo
6	.set	mips16
7foo:
8	la	$2, bar
9	lw	$2, bar
10	la	$2, bar + 0x2468
11	lw	$2, bar + 0x2468
12	la	$2, bar + 0x12345678
13	lw	$2, bar + 0x12345678
14	la	$2, bar + 0x2468ace0
15	lw	$2, bar + 0x2468ace0
16	nop
17	.set	nomips16
18	.end	foo
19
20# Force some (non-delay-slot) zero bytes, to make 'objdump' print ...
21	.align	4, 0
22	.space	16
23