mirror of
https://github.com/mupen64plus-ae/parallel-rsp.git
synced 2024-11-23 05:29:39 +00:00
16 lines
168 B
ArmAsm
16 lines
168 B
ArmAsm
.data
|
|
.byte 0, 0, 0, 0
|
|
foobar:
|
|
.word 12345678
|
|
.word 30
|
|
|
|
.text
|
|
.global main
|
|
main:
|
|
la $t1, foobar
|
|
lw $t0, 0($t1)
|
|
lw $t1, 1($t1)
|
|
lw $t2, 2($t1)
|
|
lw $t3, 3($t1)
|
|
break
|