blob: 593a33a3408ecfd9ab0f3a6fe87286b6234dc473 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <stdint.h>
#define PIC_REMAP_OFFSET 0x20
void pic_remap(void);
void pic_mask(int irq);
void pic_unmask(int irq);
void pic_disable(void);
void pic_eoi(int irq);
|