aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/libc/crt-src/amd64/crt0.S13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/libc/crt-src/amd64/crt0.S b/lib/libc/crt-src/amd64/crt0.S
deleted file mode 100644
index d45d74c..0000000
--- a/lib/libc/crt-src/amd64/crt0.S
+++ /dev/null
@@ -1,13 +0,0 @@
-.text
-.globl _start
-
-_start:
- xor %rbp, %rbp // End of callstack
-
- pushq %rsi // argv
- pushq %rdi // argc
- call __libc_init
-
- popq %rdi
- popq %rsi
- ud2 // TODO: Call exit()