Register APC interrupt handler

This commit is contained in:
2026-06-26 10:22:18 +02:00
parent 77c1138f7d
commit 53a8b57a96
4 changed files with 24 additions and 0 deletions

View File

@@ -142,6 +142,7 @@ VOID
KE::KernelInit::InitializeInterruptHandlers(VOID)
{
/* Register interrupt handlers */
HL::Irq::RegisterSystemInterruptHandler(APIC_VECTOR_APC, KE::Apc::HandleApcInterrupt);
HL::Irq::RegisterSystemInterruptHandler(APIC_VECTOR_DPC, KE::Dispatcher::HandleDispatchInterrupt);
HL::Irq::RegisterSystemInterruptHandler(APIC_VECTOR_IPI, KE::Ipi::HandleIpiInterrupt);
}