1

Initial commit

This commit is contained in:
2023-02-26 21:12:51 +01:00
commit d2ec37332f
69 changed files with 58831 additions and 0 deletions

9
code/lapic_svr_entry.cpp Normal file
View File

@ -0,0 +1,9 @@
struct SVREntry {
InterruptVector vector;
bool isSWEnabled;
bool hasFocusProcessorChecking;
bool suppressEoiBroadcasting;
explicit SVREntry(uint32_t registerValue);
explicit operator uint32_t() const;
};