UnnamedOS
pic.h
Go to the documentation of this file.
1 
7 #ifndef INTERRUPTS_PIC_H
8 #define INTERRUPTS_PIC_H
9 
10 #include <stdint.h>
11 
12 void pic_init();
13 void pic_send_eoi(uint8_t irq);
14 
15 #endif
16 
void pic_init()
Initializes the PIC.
Definition: pic.c:25
void pic_send_eoi(uint8_t intr)
Sends an "end of interrupt" signal.
Definition: pic.c:61