mirror of
https://github.com/mupen64plus-ae/parallel-rsp.git
synced 2024-11-23 05:29:39 +00:00
23 lines
257 B
ArmAsm
23 lines
257 B
ArmAsm
.text
|
|
.set noreorder
|
|
.global main
|
|
main:
|
|
la $t5, notdie
|
|
la $ra, indelay
|
|
jalr $a0, $ra
|
|
move $ra, $a0
|
|
|
|
j die # Test to make sure this becomes a conditional branch.
|
|
|
|
indelay:
|
|
jalr $a0, $t5
|
|
move $t0, $a0
|
|
|
|
die:
|
|
li $t0, 0x10000
|
|
|
|
notdie:
|
|
li $t1, 2
|
|
break
|
|
|