- Timestamp:
- Mar 31, 2008 11:25:10 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r7647 r7648 1045 1045 case CPUMCPUIDFEATURE_LONG_MODE: 1046 1046 { 1047 uint32_t ulEdx , ulDummy;1048 1049 ASMCpuId(0x80000001, &ulDummy, &ulDummy, &ulDummy, &ulEdx);1050 1047 if ( pVM->cpum.s.aGuestCpuIdExt[0].eax < 0x80000001 1051 || !( ulEdx& X86_CPUID_AMD_FEATURE_EDX_LONG_MODE))1048 || !(ASMCpuId_EDX(0x80000001) & X86_CPUID_AMD_FEATURE_EDX_LONG_MODE)) 1052 1049 { 1053 1050 AssertMsgFailed(("ERROR: Can't turn on LONG MODE when the host doesn't support it!!\n"));
Note:
See TracChangeset
for help on using the changeset viewer.