12 lines
189 B
C
12 lines
189 B
C
#ifndef __SYS__PIC_H__
|
|
#define __SYS__PIC_H__
|
|
|
|
#include <stdbool.h>
|
|
|
|
void pic_eoi(int irq);
|
|
void pic_flush(void);
|
|
void pic_set_mask(int line, bool status);
|
|
void pic_mask_all(void);
|
|
|
|
#endif
|