Files

21 lines
311 B
ArmAsm
Raw Permalink Normal View History

2020-03-31 12:55:52 +01:00
.global _start
.type _start, @function
2020-03-31 16:21:07 +01:00
.extern __fio_init
.type __fio_init, @function
2020-03-31 12:55:52 +01:00
.extern main
.type main, @function
_start:
2020-08-24 10:20:43 +01:00
xor %ebp, %ebp
mov (%rsp), %edi
lea 8(%rsp), %rsi
lea 16(%rsp, %rdi, 8), %rdx
xor %eax, %eax
2020-03-31 12:55:52 +01:00
call main
movq %rax, %rdi
movq $60, %rax
syscall