From 82953fb52956d11223f4269411189bfa7882c443 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Fri, 8 Nov 2024 15:54:17 +0000 Subject: [PATCH] Exit 0 immediately after starting --- postfix.s | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 postfix.s diff --git a/postfix.s b/postfix.s new file mode 100644 index 0000000..c06901f --- /dev/null +++ b/postfix.s @@ -0,0 +1,7 @@ + .text + .global _start +_start: + ## Exit with code 0 + mov $60, %rax + mov $0, %rdi + syscall