aboutsummaryrefslogtreecommitdiff
path: root/src/features/syscall.c
blob: ab1849c64cafd0f5f39f1d1c08b6c85e08976a72 (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_install()
{
	isr_install_handler(0x80, syscall_handler);
}