mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +00:00
19 lines
133 B
ArmAsm
19 lines
133 B
ArmAsm
.text
|
|
foo:
|
|
L1:
|
|
mov.l L2,r0
|
|
.uses L1
|
|
jsr @r0
|
|
nop
|
|
.uses L1
|
|
jmp @r0
|
|
nop
|
|
rts
|
|
nop
|
|
.align 2
|
|
L2:
|
|
.long bar
|
|
bar:
|
|
rts
|
|
.align 4
|