finix/kernel/include/arch/i686/pic.h

12 lines
185 B
C
Raw Permalink Normal View History

2023-07-16 06:54:32 +00:00
#pragma once
#include <stdint.h>
#define PIC_REMAP_OFFSET 0x20
2023-07-17 23:34:52 +00:00
void pic_remap(void);
2023-07-16 06:54:32 +00:00
void pic_mask(int irq);
void pic_unmask(int irq);
void pic_disable(void);
void pic_eoi(int irq);