aboutsummaryrefslogtreecommitdiff
path: root/src/features/syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/syscall.c')
-rw-r--r--src/features/syscall.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/features/syscall.c b/src/features/syscall.c
deleted file mode 100644
index 3d012cf..0000000
--- a/src/features/syscall.c
+++ /dev/null
@@ -1,25 +0,0 @@
-// MIT License, Copyright (c) 2020 Marvin Borner
-
-#include <cpu.h>
-#include <interrupts.h>
-#include <load.h>
-#include <print.h>
-#include <proc.h>
-#include <str.h>
-
-int i = 0;
-void syscall_handler(struct regs *r)
-{
- printf("[SYSCALL] %d\n", r->eax);
-
- struct proc *a = proc_make();
- bin_load(++i ? "/a" : "/b", a);
- strcpy(a->name, "a");
- proc_print();
-}
-
-void syscall_init()
-{
- idt_set_gate(0x80, (u32)isr128, 0x08, 0x8E);
- isr_install_handler(0x80, syscall_handler);
-}