diff options
author | Marvin Borner | 2020-08-06 20:02:44 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-06 20:02:44 +0200 |
commit | 9dbf8131d6aaff1617ef2bc7ebf54838f808688d (patch) | |
tree | d578b3a54a509b840a753c9c29a37dd37b2b3f5d /src/features/syscall.c | |
parent | 1272295d0c611f04128f9e388d5a0468dc64dae0 (diff) |
Fixed messed up registers
Diffstat (limited to 'src/features/syscall.c')
-rw-r--r-- | src/features/syscall.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/features/syscall.c b/src/features/syscall.c index ebfff59..2279429 100644 --- a/src/features/syscall.c +++ b/src/features/syscall.c @@ -1,5 +1,6 @@ // MIT License, Copyright (c) 2020 Marvin Borner +#include <cpu.h> #include <interrupts.h> #include <load.h> #include <print.h> @@ -11,7 +12,8 @@ void syscall_handler(struct regs *r) struct proc *a = proc_make(); bin_load("/a", a); - proc_jump(a); + sti(); + hlt(); } void syscall_init() |