David Gonzalez Martin e07d65cd54 First iteration
2024-06-28 09:12:53 +02:00

16 lines
230 B
ArmAsm

.section .text
.extern entry_point
.global _start
_start:
xor %ebp, %ebp
popq %rdi
mov %rsp, %rsi
and $~0xf, %rsp
pushq %rsp
pushq $0
call entry_point
mov $231, %eax
xor %edi, %edi
syscall