summaryrefslogtreecommitdiff
path: root/userspace/sys/crt.S
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-17 02:28:02 +0200
committerMiguel <m.i@gmx.at>2018-08-17 02:28:02 +0200
commitc742be9c738c91703a7be787639cad167de3a6b1 (patch)
treedb0e170dab1b7f34630489d0cb1d396c92f15c79 /userspace/sys/crt.S
parent559eea53ecdd1e3e45f24d15e8739419b0cd647a (diff)
started reviving my fool os
Diffstat (limited to 'userspace/sys/crt.S')
-rw-r--r--userspace/sys/crt.S20
1 files changed, 0 insertions, 20 deletions
diff --git a/userspace/sys/crt.S b/userspace/sys/crt.S
deleted file mode 100644
index d09f8ca..0000000
--- a/userspace/sys/crt.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