23 lines
278 B
ArmAsm
23 lines
278 B
ArmAsm
.text
|
|
|
|
.space 0x1000
|
|
|
|
.ent foo
|
|
.set mips16
|
|
.set noreorder
|
|
foo:
|
|
la $2, .L0
|
|
jr $ra
|
|
nop
|
|
.ifdef align
|
|
.align 2
|
|
.endif
|
|
.L0 = .
|
|
.short 0
|
|
.set reorder
|
|
.set nomips16
|
|
.end foo
|
|
|
|
# Force some (non-delay-slot) zero bytes, to make 'objdump' print ...
|
|
.align 4, 0
|
|
.space 16
|