Added PCI support

This commit is contained in:
Alex
2022-10-10 23:50:34 +03:00
parent 32a17c5e63
commit 19e810653a
4 changed files with 49 additions and 13 deletions

View File

@ -14,6 +14,9 @@ namespace Power
void *madt;
public:
void *GetACPI() { return this->acpi; }
void *GetDSDT() { return this->dsdt; }
void *GetMADT() { return this->madt; }
void Reboot();
void Shutdown();
Power();