summaryrefslogtreecommitdiff
path: root/userspace/crt0.S
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-18 16:20:26 +0200
committerMiguel <m.i@gmx.at>2018-08-18 16:20:26 +0200
commit639c3d47b09114628f8e1f8817c27c10bf1fb28c (patch)
treef0381de25cc8f2de96a87b47cc76f7d09548bf7e /userspace/crt0.S
parent7b0d88b2dff9b635d9ff69f6d51b6832c1ca4c40 (diff)
reviving old drivers: mouse, pci, e1000
Diffstat (limited to 'userspace/crt0.S')
-rw-r--r--userspace/crt0.S4
1 files changed, 3 insertions, 1 deletions
diff --git a/userspace/crt0.S b/userspace/crt0.S
index 87f1995..30b56a9 100644
--- a/userspace/crt0.S
+++ b/userspace/crt0.S
@@ -6,7 +6,8 @@ pop %eax
mov %eax, environ
pop %eax
-#mov %eax, _impure_ptr
+# mov %eax, _impure_ptr # TODO: use this !
+
call main
push environ
@@ -14,6 +15,7 @@ push %eax
call _exit2
# this should never be reached anyway!
+
.wait:
hlt
jmp .wait