mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
14 lines
155 B
ArmAsm
14 lines
155 B
ArmAsm
.text
|
|
.globl foo
|
|
.protected foo
|
|
.type foo, @function
|
|
foo:
|
|
ret
|
|
.size foo, .-foo
|
|
.globl bar
|
|
.type bar, @function
|
|
bar:
|
|
call foo
|
|
ret
|
|
.size bar, .-bar
|