Changeset 7647 in vbox
- Timestamp:
- Mar 31, 2008 11:23:51 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29157
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r7646 r7647 1024 1024 case CPUMCPUIDFEATURE_PAE: 1025 1025 { 1026 uint32_t ulEdx, ulDummy; 1027 1028 ASMCpuId(1, &ulDummy, &ulDummy, &ulDummy, &ulEdx); 1029 if (!(ulEdx & X86_CPUID_FEATURE_EDX_PAE)) 1026 if (!(ASMCpuId_EDX(1) & X86_CPUID_FEATURE_EDX_PAE)) 1030 1027 { 1031 1028 AssertMsgFailed(("ERROR: Can't turn on PAE when the host doesn't support it!!\n"));
Note:
See TracChangeset
for help on using the changeset viewer.