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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/features/syscall.c b/src/features/syscall.c
index c3a758a..50963b7 100644
--- a/src/features/syscall.c
+++ b/src/features/syscall.c
@@ -15,5 +15,6 @@ void syscall_handler(struct regs *r)
void syscall_init()
{
+ idt_set_gate(0x80, (u32)isr128, 0x08, 0x8E);
isr_install_handler(0x80, syscall_handler);
}