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.

13 lines
257 B
C++

#ifndef PIC_HPP
#define PIC_HPP
#include <cstdint>
/* reinitialize the PIC controllers, giving them specified vector offsets
rather than 8h and 70h, as configured by default */
void pic_initialize();
void pic_eoi(std::uint8_t irq);
#endif // PIC_HPP