mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00:00
15 lines
216 B
ArmAsm
15 lines
216 B
ArmAsm
.text
|
|
.globl _start
|
|
.type _start,@function
|
|
_start:
|
|
bl foo@plt
|
|
bl sexternal@plt
|
|
bl sglobal@plt
|
|
.size _start, .-_start
|
|
|
|
.globl sexternal
|
|
.type sexternal,@function
|
|
sexternal:
|
|
blr
|
|
.size sexternal, .-sexternal
|