1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:17:44 +00:00

Add a PIC::getISR() helper.

This commit is contained in:
Andreas Kling 2018-10-17 16:53:06 +02:00
parent e0f31d38a2
commit 9aa88fe186
2 changed files with 12 additions and 0 deletions

View file

@ -1,11 +1,14 @@
#pragma once
#include <AK/Types.h>
namespace PIC {
void enable(BYTE number);
void disable(BYTE number);
void eoi(BYTE number);
void initialize();
word getISR();
}