mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
17 lines
182 B
ArmAsm
17 lines
182 B
ArmAsm
.text
|
|
.globl _start
|
|
_start:
|
|
mov ip, sp
|
|
stmdb sp!, {r11, ip, lr, pc}
|
|
ldr a1, .Lval
|
|
ldmia sp, {r11, sp, lr}
|
|
bx lr
|
|
|
|
.Lval:
|
|
.long lib_func1
|
|
|
|
.globl app_func2
|
|
app_func2:
|
|
bx lr
|
|
|