Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
83db6fdc7888d59b6c566b52ab8bf52f99c90386
/
.
/
src
/
kernel
/
syscall.c
blob: 6877e635f3e129433c036610d60f1c0c49932ef3 [
file
] [
log
] [
blame
]
#include
"syscall.h"
#include
"log.h"
#include
"pic.h"
void
do_syscall
(
struct
registers
*
regs
)
{
kprintf
(
"Syscall executed: %d\n"
,
regs
->
eax
);
}
void
init_syscall
()
{
add_interrupt_handler
(
SYSCALL_INT
,
do_syscall
);
}