Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
ee6d10de2d32711525dc37090f6b617a8526ad3a
/
.
/
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
);
}