diff options
Diffstat (limited to 'src/userspace/main.c')
-rw-r--r-- | src/userspace/main.c | 12 |
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 |