31 #include "drivers/legacy_pc/pic.h"
36 pic_unmask_irq(
unsigned int num)
42 port = PIC1_DATA_PORT;
44 port = PIC2_DATA_PORT;
49 outb(port, bitmap & ~
BIT(num));
53 pic_eoi(
unsigned int irq)
56 outb(PIC2_CMD_PORT, PIC_ACK);
59 outb(PIC1_CMD_PORT, PIC_ACK);
#define BIT(x)
Useful to reference a single bit of a byte.