aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/main.c
diff options
context:
space:
mode:
authorMarvin Borner2019-12-04 22:15:27 +0100
committerMarvin Borner2019-12-04 22:15:27 +0100
commit3e14c632b3b9c39d27693f2538f377fb52de193a (patch)
tree688b7e365560ca61485a54a4576a61982c8c5f29 /src/userspace/main.c
parented3da12bb378d82878fff1d50e5e9e7af3d7265d (diff)
Fully working syscall interface
Diffstat (limited to 'src/userspace/main.c')
-rw-r--r--src/userspace/main.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/userspace/main.c b/src/userspace/main.c
index 5df961f..f7cd3ba 100644
--- a/src/userspace/main.c
+++ b/src/userspace/main.c
@@ -1,15 +1,9 @@
-void write(const char *str, int len)
-{
- int ret;
- asm volatile ("push %%ebx; movl %2,%%ebx; int $0x80; pop %%ebx" \
- : "=a" (ret) \
- : "0" (1), "b" ((int) (str)), "c"((int) (len)));
-}
+#include <syscall.h>
void user_main()
{
- const char hello[] = "Switched to usermode!\n";
- write(hello, sizeof(hello));
+ const char hello[] = "> Successfully to usermode!\n";
+ syscall_write(0, hello, sizeof(hello));
while (1) {};
} \ No newline at end of file