1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/arch/syscall.c
Braiden Vasco adcb66761b Fix errors
2017-11-05 14:15:27 +00:00

9 lines
177 B
C

#include "interrupt.h"
#include "kprintf.h"
void syscall_handler(struct IsrRegisters regs)
{
const unsigned int id = regs.eax & 0xFFFF;
kprintf("syscall %u\n", id);
}