mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-21 09:29:36 +00:00
10 lines
119 B
ArmAsm
10 lines
119 B
ArmAsm
.text
|
|
.globl foo
|
|
.type foo, @function
|
|
foo:
|
|
ret
|
|
.globl _start
|
|
.type _start, @function
|
|
_start:
|
|
movl foo@GOT, %eax
|