Exit 0 immediately after starting

This commit is contained in:
Camden Dixie O'Brien 2024-11-08 15:54:17 +00:00
commit 82953fb529

7
postfix.s Normal file
View File

@ -0,0 +1,7 @@
.text
.global _start
_start:
## Exit with code 0
mov $60, %rax
mov $0, %rdi
syscall