From 8de5f7662dce84439ff4633336d5264fd88b5dd3 Mon Sep 17 00:00:00 2001 From: Alexey Sheplyakov Date: Sun, 5 Jun 2022 19:43:37 +0400 Subject: [PATCH] Added cpp-asm source file for aarch64 --- bye-aarch64.S | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bye-aarch64.S diff --git a/bye-aarch64.S b/bye-aarch64.S new file mode 100644 index 0000000..98d40d0 --- /dev/null +++ b/bye-aarch64.S @@ -0,0 +1,13 @@ +#include + + .arch armv8-a + .text + .align 2 + .global _start +_start: + mov x8, __NR_exit + mov x0, 0 + svc #0 + .section .note.GNU-stack,"",@progbits + +