mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-16 13:05:36 +00:00
11 lines
127 B
ArmAsm
11 lines
127 B
ArmAsm
.type bar, @function
|
|
bar:
|
|
ret
|
|
.size bar, .-bar
|
|
.globl foo
|
|
.type foo, @function
|
|
foo:
|
|
leal bar, %eax
|
|
ret
|
|
.size foo, .-foo
|