mirror of
https://github.com/simple64/simple64.git
synced 2026-07-29 09:48:25 +02:00
12 lines
110 B
ArmAsm
12 lines
110 B
ArmAsm
.data
|
|
.byte 0, 0, 0
|
|
foobar:
|
|
.byte 0x72, 0x91
|
|
|
|
.text
|
|
.global main
|
|
main:
|
|
la $t1, foobar
|
|
lb $t0, 1($t1)
|
|
break
|