aboutsummaryrefslogtreecommitdiff
path: root/src/features/syscall.c
blob: c3a758a0db61160f0bdcc745f129cb94363e1e91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// MIT License, Copyright (c) 2020 Marvin Borner

#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);
}

void syscall_init()
{
	isr_install_handler(0x80, syscall_handler);
}