aboutsummaryrefslogtreecommitdiffstats
path: root/src/pic.hpp
blob: 17abd5546e65468808b48f1438682885ff4df2e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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