1	.text
2
3stuff:
4	.ent stuff
5	.set push
6	.set noreorder
7	.set noat
8
9	# sc/ll instructions are not supported on r5900:
10	ll $5, 0($6)
11	sc $5, 0($6)
12
13	# scd/lld instructions are not supported on r5900:
14	lld $5, 0($6)
15	scd $5, 0($6)
16
17	.space	8
18	.end stuff
19