commit 82953fb52956d11223f4269411189bfa7882c443 Author: Camden Dixie O'Brien Date: Fri Nov 8 15:54:17 2024 +0000 Exit 0 immediately after starting 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