Kernel: Map interrupt handlers for all processors

This doesn't mean that processors will actually handle the irqs
This commit is contained in:
2024-03-09 23:49:31 +02:00
parent 2420886c2c
commit 55d2a64f54
3 changed files with 4 additions and 8 deletions

View File

@@ -42,7 +42,7 @@ namespace Kernel
processor.m_gdt = GDT::create();
ASSERT(processor.m_gdt);
processor.m_idt = IDT::create(id == s_bsb_id);
processor.m_idt = IDT::create();
ASSERT(processor.m_idt);
return processor;