Kernel: remove unused function from IDT

This commit is contained in:
Bananymous 2023-01-13 00:02:39 +02:00
parent 61bd9da8e0
commit 4c7950cd3e
1 changed files with 0 additions and 5 deletions

View File

@ -174,11 +174,6 @@ namespace IDT
asm volatile("lidt %0"::"m"(s_idtr));
}
static void unimplemented_trap()
{
Kernel::Panic("Unhandeled IRQ");
}
static void register_interrupt_handler(uint8_t index, void (*f)())
{
s_idt[index].low = 0x00080000 | ((uint32_t)(f) & 0x0000ffff);