You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
483 B
C++
19 lines
483 B
C++
/*! \file
|
|
* \brief Handle (disable) the old Programmable Interrupt Controller (PIC)
|
|
*/
|
|
|
|
#pragma once
|
|
#include "../types.h"
|
|
|
|
/*! \brief The Programmable Interrupt Controller (PIC aka 8259A)
|
|
*/
|
|
namespace PIC {
|
|
|
|
/*! \brief Initialize the PICs (Programmable Interrupt Controller, 8259A),
|
|
* such that all 15 hardware interrupts are stored sequentially in the \ref IDT
|
|
* and the hardware interrupts are disabled (in favor of \ref APIC).
|
|
*/
|
|
void initialize();
|
|
|
|
} // namespace PIC
|