limine/common/sys/pic.h
cospplredman ba5c0004e6 fixed header guard names
made them more standard compliant
2024-03-20 03:06:55 +01:00

12 lines
185 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