mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
13 lines
186 B
ArmAsm
13 lines
186 B
ArmAsm
.text
|
|
.p2align 4,,15
|
|
.globl main
|
|
.type main, @function
|
|
main:
|
|
subq $8, %rsp
|
|
call foo
|
|
xorl %eax, %eax
|
|
addq $8, %rsp
|
|
ret
|
|
.size main, .-main
|
|
.section .note.GNU-stack,"",@progbits
|