1 2 3 4 5 6 7 8 9
#ifndef _PIC_H_ #define _PIC_H_ #include <stdint.h> void pic_init(void); void pic_eoi(uint8_t irq); #endif