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