mirror of
https://github.com/mupen64plus-ae/parallel-rsp.git
synced 2025-02-17 03:18:15 +00:00
22 lines
222 B
ArmAsm
22 lines
222 B
ArmAsm
.text
|
|
.set noreorder
|
|
.global main
|
|
main:
|
|
jal indelay
|
|
nop
|
|
|
|
jal die # Test to make sure this becomes a conditional branch.
|
|
|
|
indelay:
|
|
jal notdie
|
|
move $t2, $ra
|
|
li $t0, 1
|
|
|
|
die:
|
|
li $t0, 0x10000
|
|
|
|
notdie:
|
|
li $t1, 2
|
|
break
|
|
|