diff options
author | Marvin Borner | 2019-12-18 17:59:22 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-18 17:59:22 +0100 |
commit | 07530dd08e0b29573712b54543a7fc42672bb34b (patch) | |
tree | 3026395a952e66a489b3fcf24a89d64f2bb6198c /src/kernel/syscall/syscall.c | |
parent | 025709e8643eb24e3360e575564b34ebd8062fd7 (diff) |
Added very basic command support
Diffstat (limited to 'src/kernel/syscall/syscall.c')
-rw-r--r-- | src/kernel/syscall/syscall.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/kernel/syscall/syscall.c b/src/kernel/syscall/syscall.c index 16d1ce4..7d5420d 100644 --- a/src/kernel/syscall/syscall.c +++ b/src/kernel/syscall/syscall.c @@ -29,8 +29,7 @@ void syscall_handler(struct regs *r) if (!location) return; - uint32_t ret = location(r->ebx, r->ecx, r->edx, r->esi, r->edi); - r->eax = ret; + r->eax = location(r->ebx, r->ecx, r->edx, r->esi, r->edi); } void syscalls_install() |