mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
14 lines
99 B
ArmAsm
14 lines
99 B
ArmAsm
.text
|
|
foo:
|
|
L1:
|
|
mov.l L2,r0
|
|
.uses L1
|
|
jsr @r0
|
|
rts
|
|
.align 2
|
|
L2:
|
|
.long bar
|
|
bar:
|
|
rts
|
|
.align 4
|