blob: 22794295ce048a138820ed1e8a97e152a5c79562 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// MIT License, Copyright (c) 2020 Marvin Borner
#include <cpu.h>
#include <interrupts.h>
#include <load.h>
#include <print.h>
#include <proc.h>
void syscall_handler(struct regs *r)
{
printf("[SYSCALL] %d\n", r->eax);
struct proc *a = proc_make();
bin_load("/a", a);
sti();
hlt();
}
void syscall_init()
{
idt_set_gate(0x80, (u32)isr128, 0x08, 0x8E);
isr_install_handler(0x80, syscall_handler);
}
|