mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
9 lines
177 B
C
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);
|
|
}
|