mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
14 lines
174 B
ArmAsm
14 lines
174 B
ArmAsm
.text
|
|
.globl foo
|
|
.protected foo
|
|
.type foo, @function
|
|
foo:
|
|
ret
|
|
.size foo, .-foo
|
|
.globl bar
|
|
.type bar, @function
|
|
bar:
|
|
leal foo@GOTOFF(%ecx), %eax
|
|
ret
|
|
.size bar, .-bar
|