12 lines
196 B
C
12 lines
196 B
C
#ifndef INTR_PIC_H_
|
|
#define INTR_PIC_H_
|
|
|
|
#include <stdbool.h>
|
|
|
|
void intr_pic_init(void);
|
|
void intr_pic_eoi(bool pic2);
|
|
void intr_pic_mask(void);
|
|
void intr_pic_unmask(void);
|
|
|
|
#endif // INTR_PIC_H_
|