summaryrefslogtreecommitdiff
path: root/userspace/crt0.S
diff options
context:
space:
mode:
Diffstat (limited to 'userspace/crt0.S')
-rw-r--r--userspace/crt0.S23
1 files changed, 0 insertions, 23 deletions
diff --git a/userspace/crt0.S b/userspace/crt0.S
deleted file mode 100644
index 48eadd9..0000000
--- a/userspace/crt0.S
+++ /dev/null
@@ -1,23 +0,0 @@
-.global _start
-
-.extern main
-.extern exit
-
-_start:
-
-push $0
-call sbrk
-
-#push $[_BSS_END_]
-#call sbrk
-
-call main
-
-
-push %eax
-call _exit
-
-# this should never be reached anyway!
-.wait:
- hlt
-jmp .wait