1	.text
2	.set	mips16
3	.ent	foo
4foo:
5	nop
6	la	$2, bar
7	lw	$2, bar
8	dla	$2, bar
9	ld	$2, bar
10	.set	nomips16
11	.end	foo
12
13# Force some (non-delay-slot) zero bytes, to make 'objdump' print ...
14	.align	4, 0
15	.space	16
16
17	.type	bar, @object
18bar:
19	.long	0
20	.size	bar, . - bar
21