summaryrefslogtreecommitdiff
path: root/userspace/sys/crt0.S
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-22 18:42:35 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-22 18:42:35 +0100
commit5c8c67810a9df8fdcd7ca286cb2266d5d3536309 (patch)
tree6abd9aaa6ace18ef86bfbf3228e5f28a9c9a773b /userspace/sys/crt0.S
parenteca57656bfb384583c1c4b34de46cde6b36d6694 (diff)
Passing params to main()
Diffstat (limited to 'userspace/sys/crt0.S')
-rw-r--r--userspace/sys/crt0.S7
1 files changed, 0 insertions, 7 deletions
diff --git a/userspace/sys/crt0.S b/userspace/sys/crt0.S
index 48eadd9..33e5d32 100644
--- a/userspace/sys/crt0.S
+++ b/userspace/sys/crt0.S
@@ -5,15 +5,8 @@
_start:
-push $0
-call sbrk
-
-#push $[_BSS_END_]
-#call sbrk
-
call main
-
push %eax
call _exit