cross-toolchain/bye-arm64.S

14 lines
161 B
ArmAsm
Raw Normal View History

2022-06-05 18:43:37 +03:00
#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