1

Final pre-release

This commit is contained in:
2023-03-02 17:29:30 +01:00
parent 01b1be0629
commit 3f02dfd309
47 changed files with 4803 additions and 1836 deletions

5
code/ioapic_allow.cpp Normal file
View File

@ -0,0 +1,5 @@
void IoApic::allow(GlobalSystemInterrupt gsi) {
REDTBLEntry redtblEntry = readREDTBL(gsi);
redtblEntry.isMasked = false;
writeREDTBL(gsi, redtblEntry);
}