Check for PAE

Checking for PAE and set some logic later to support it.
This commit is contained in:
James Tabor 2021-08-08 20:37:06 -05:00
parent 4f2108882d
commit a81ad376a1

View file

@ -380,6 +380,11 @@ KiGetFeatureBits(VOID)
if (CpuFeatures & 0x02000000) FeatureBits |= KF_XMMI; if (CpuFeatures & 0x02000000) FeatureBits |= KF_XMMI;
if (CpuFeatures & 0x04000000) FeatureBits |= KF_XMMI64; if (CpuFeatures & 0x04000000) FeatureBits |= KF_XMMI64;
if (CpuFeatures & 0x00000040)
{
DPRINT1("Support PAE\n");
}
/* Check if the CPU has hyper-threading */ /* Check if the CPU has hyper-threading */
if (CpuFeatures & 0x10000000) if (CpuFeatures & 0x10000000)
{ {