summaryrefslogtreecommitdiff
path: root/userspace/sys/crt0.S
diff options
context:
space:
mode:
Diffstat (limited to 'userspace/sys/crt0.S')
-rw-r--r--userspace/sys/crt0.S20
1 files changed, 0 insertions, 20 deletions
diff --git a/userspace/sys/crt0.S b/userspace/sys/crt0.S
deleted file mode 100644
index d09f8ca..0000000
--- a/userspace/sys/crt0.S
+++ /dev/null
@@ -1,20 +0,0 @@
-.global _start
-
-_start:
-
-pop %eax
-mov %eax, environ
-
-pop %eax
-#mov %eax, _impure_ptr
-
-call main
-
-push environ
-push %eax
-call _exit2
-
-# this should never be reached anyway!
-.wait:
- hlt
-jmp .wait