mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
18 lines
287 B
ArmAsm
18 lines
287 B
ArmAsm
.text
|
|
|
|
.globl lib_func1
|
|
.type lib_func1, %function
|
|
lib_func1:
|
|
mov ip, sp
|
|
stmdb sp!, {r11, ip, lr, pc}
|
|
bl app_func2(PLT)
|
|
ldmia sp, {r11, sp, lr}
|
|
bx lr
|
|
.size lib_func1, . - lib_func1
|
|
|
|
.globl lib_func2
|
|
.type lib_func2, %function
|
|
lib_func2:
|
|
bx lr
|
|
.size lib_func2, . - lib_func2
|