aboutsummaryrefslogtreecommitdiffstats
path: root/src/x86_64/postlude.asm
diff options
context:
space:
mode:
Diffstat (limited to 'src/x86_64/postlude.asm')
-rw-r--r--src/x86_64/postlude.asm12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/x86_64/postlude.asm b/src/x86_64/postlude.asm
deleted file mode 100644
index 45be7ee..0000000
--- a/src/x86_64/postlude.asm
+++ /dev/null
@@ -1,12 +0,0 @@
1
2_start_return:
3 ;; return the last value in the stack
4 pop rdi
5 call display
6
7exit:
8 ;; exit syscall
9 mov rax, 60
10 xor rdi, rdi
11 syscall
12