mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
14 lines
153 B
ArmAsm
14 lines
153 B
ArmAsm
.text
|
|
.type foo,%gnu_indirect_function
|
|
foo:
|
|
ret
|
|
.globl _start
|
|
_start:
|
|
call foo@PLT
|
|
.globl __start
|
|
__start:
|
|
.global _main
|
|
_main:
|
|
.data
|
|
.dc.a foo
|