Added cpp-asm source file for aarch64

This commit is contained in:
Алексей Шепляков 2022-06-05 19:43:37 +04:00
parent 12166953e9
commit 8de5f7662d

13
bye-aarch64.S Normal file
View File

@ -0,0 +1,13 @@
#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