summaryrefslogtreecommitdiff
path: root/userspace/sys/crt0.S
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2015-05-25 13:04:41 +0200
committerMichal Idziorek <m.i@gmx.at>2015-05-25 13:04:41 +0200
commit2c8cefb3a269d66a6a705bcb4912b0657379273c (patch)
tree677ee15b87072e5ccd560f1be277abaf11b1ec28 /userspace/sys/crt0.S
parent8ea3e244d44190e44a092ffb004e13ad94174c68 (diff)
fixed crt0.o for compiler toolchain (-lfool no more!)
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