1
Files
interrupt-handling-using-th…/code/system_after.cpp
2023-02-26 21:12:51 +01:00

9 lines
250 B
C++

// Excerpt from System::initializeSystem(). Located before interrupts
// are enabled and any devices have registered their handlers.
if (Apic::isSupported()) {
Apic::enable();
if (Apic::isSmpSupported()) {
Apic::startupSmp();
}
}