blob: 96bf01b42410a520631507a1155798cbf4a81f8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.set noreorder
.set micromips
.ent test
.globl test
test:
jalx test1
nop
.set nomicromips
test1:
addu $3, $4, $5
.end test
# Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
.space 8
|