mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
15 lines
212 B
ArmAsm
15 lines
212 B
ArmAsm
.text
|
|
.globl _start
|
|
.type _start, %function
|
|
_start:
|
|
bl foo
|
|
bl sexternal
|
|
b sglobal
|
|
.size _start, .-_start
|
|
|
|
.globl sexternal
|
|
.type sexternal, %function
|
|
sexternal:
|
|
mov pc, lr
|
|
.size sexternal, .-sexternal
|