mirror of
https://github.com/tailix/kernel.git
synced 2024-11-20 11:16:10 -05:00
9 lines
168 B
C
9 lines
168 B
C
#include "interrupt.h"
|
|
#include "kprintf.h"
|
|
|
|
void syscall_handler(struct IsrRegisters regs)
|
|
{
|
|
const unsigned int id = regs.eax;
|
|
|
|
kprintf("syscall %u\n", id);
|
|
}
|