Add more tables to ACPI SearchTables()

This commit is contained in:
Alex 2023-03-22 20:23:38 +02:00
parent 5fd8e8f152
commit c23385a243
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -24,7 +24,7 @@ namespace ACPI
break;
if (i == 3)
{
trace("%s found!", Signature);
trace("%s found at address %p!", Signature, (uintptr_t)SDTHdr);
return SDTHdr;
}
}
@ -97,6 +97,12 @@ namespace ACPI
FindTable(XSDT, (char *)"WDAT");
FindTable(XSDT, (char *)"WDDT");
FindTable(XSDT, (char *)"WDRT");
FindTable(XSDT, (char *)"ATKG");
FindTable(XSDT, (char *)"GSCI");
FindTable(XSDT, (char *)"IEIT");
FindTable(XSDT, (char *)"HMAT");
FindTable(XSDT, (char *)"CEDT");
FindTable(XSDT, (char *)"AEST");
}
ACPI::ACPI(BootInfo *Info)