Changeset 8106 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Apr 17, 2008 2:58:10 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r7730 r8106 27 27 #include "CPUMInternal.h" 28 28 #include <VBox/vm.h> 29 #include <VBox/pgm.h> 29 30 #include <VBox/err.h> 30 31 #include <VBox/dis.h> … … 1031 1032 if (!(ASMCpuId_EDX(1) & X86_CPUID_FEATURE_EDX_PAE)) 1032 1033 { 1033 AssertMsgFailed(("ERROR: Can't turn on PAE when the host doesn't support it!!\n")); 1034 LogRel(("WARNING: Can't turn on PAE when the host doesn't support it!!\n")); 1035 return; 1036 } 1037 if (PGMGetShadowMode(pVM) <= PGMMODE_32_BIT) 1038 { 1039 LogRel(("WARNING: Can't turn on PAE when the host is in 32 bits paging mode!!\n")); 1034 1040 return; 1035 1041 }
Note:
See TracChangeset
for help on using the changeset viewer.