forked from Bananymous/banan-os
Kernel: IRQs are now working :)
This commit is contained in:
15
kernel/include/kernel/PIC.h
Normal file
15
kernel/include/kernel/PIC.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
namespace PIC
|
||||
{
|
||||
|
||||
void initialize();
|
||||
void eoi(uint8_t);
|
||||
void unmask(uint8_t);
|
||||
void mask(uint8_t);
|
||||
|
||||
uint16_t get_isr();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user