mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
21 lines
268 B
ArmAsm
21 lines
268 B
ArmAsm
.text
|
|
.globl main
|
|
.type main,@function
|
|
main:
|
|
pushq %rax
|
|
movslq bar(%rip), %rax
|
|
leaq bar(%rip), %rdi
|
|
addq %rax, %rdi
|
|
|
|
callq foo
|
|
xorl %eax, %eax
|
|
popq %rcx
|
|
retq
|
|
|
|
.data
|
|
.p2align 2
|
|
bar:
|
|
.long test - .
|
|
|
|
.section .note.GNU-stack,"",@progbits
|