diff options
| author | Miguel <m.i@gmx.at> | 2018-08-17 02:28:02 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-08-17 02:28:02 +0200 |
| commit | c742be9c738c91703a7be787639cad167de3a6b1 (patch) | |
| tree | db0e170dab1b7f34630489d0cb1d396c92f15c79 /userspace/crt0.S | |
| parent | 559eea53ecdd1e3e45f24d15e8739419b0cd647a (diff) | |
started reviving my fool os
Diffstat (limited to 'userspace/crt0.S')
| -rw-r--r-- | userspace/crt0.S | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/userspace/crt0.S b/userspace/crt0.S new file mode 100644 index 0000000..4c08f89 --- /dev/null +++ b/userspace/crt0.S @@ -0,0 +1,29 @@ +.global _start + +_start: + +pop %eax +mov %eax, environ + +pop %eax +#mov %eax, _impure_ptr + +#mov $61, %eax # write syscall +#mov $1,%edx # stdout +#mov .hellostr,%ecx +#mov 9,%ebx # string length +#int $0x80 + +call main + +push environ +push %eax +call _exit2 + +# this should never be reached anyway! +.wait: + hlt +jmp .wait + +.hellostr: +.ascii "Hello Ass" |
