cross-toolchain/bye-arm64.S

14 lines
161 B
ArmAsm

#include <sys/syscall.h>
.arch armv8-a
.text
.align 2
.global _start
_start:
mov x8, __NR_exit
mov x0, 0
svc #0
.section .note.GNU-stack,"",@progbits