diff options
author | Marvin Borner | 2019-12-04 20:38:10 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-04 20:38:10 +0100 |
commit | ed3da12bb378d82878fff1d50e5e9e7af3d7265d (patch) | |
tree | 53200ca859511e5464bfd50923a3229590997607 /src/userspace | |
parent | e9407b091b34d93014b89660601da62f13df37aa (diff) |
More-working syscall logic (parameters work!)
Diffstat (limited to 'src/userspace')
-rw-r--r-- | src/userspace/main.c | 13 | ||||
-rw-r--r-- | src/userspace/start.asm | 13 |
2 files changed, 10 insertions, 16 deletions
diff --git a/src/userspace/main.c b/src/userspace/main.c index 22bb42a..5df961f 100644 --- a/src/userspace/main.c +++ b/src/userspace/main.c @@ -1,10 +1,15 @@ -#include <stddef.h> - -extern void syscall(); +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))); +} void user_main() { - syscall(); + const char hello[] = "Switched to usermode!\n"; + write(hello, sizeof(hello)); while (1) {}; }
\ No newline at end of file diff --git a/src/userspace/start.asm b/src/userspace/start.asm index 498f5f5..488101c 100644 --- a/src/userspace/start.asm +++ b/src/userspace/start.asm @@ -8,15 +8,4 @@ section .text _start: mov esp, ebp call user_main - - global syscall - syscall: - mov eax, 1 - lea edi, [ebp+welcome] - mov esi, welcome_sz - int 0x80 - ret - -section .data - welcome db "Welcome to the userspace", 0x0A, 0x0A - welcome_sz equ $ - welcome
\ No newline at end of file + jmp $
\ No newline at end of file |