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 + +