mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Check for PAE
Checking for PAE and set some logic later to support it.
This commit is contained in:
parent
4f2108882d
commit
a81ad376a1
1 changed files with 5 additions and 0 deletions
|
@ -380,6 +380,11 @@ KiGetFeatureBits(VOID)
|
|||
if (CpuFeatures & 0x02000000) FeatureBits |= KF_XMMI;
|
||||
if (CpuFeatures & 0x04000000) FeatureBits |= KF_XMMI64;
|
||||
|
||||
if (CpuFeatures & 0x00000040)
|
||||
{
|
||||
DPRINT1("Support PAE\n");
|
||||
}
|
||||
|
||||
/* Check if the CPU has hyper-threading */
|
||||
if (CpuFeatures & 0x10000000)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue