- Timestamp:
- Sep 25, 2013 1:41:57 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 89308
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/CPUMR0.cpp
r48567 r48683 204 204 uint32_t fFeatures; 205 205 ASMCpuId(1, &u32CpuVersion, &u32Dummy, &u32Dummy, &fFeatures); 206 uint32_t u32Family = u32CpuVersion >> 8;207 uint32_t u32Model = (u32CpuVersion >> 4) & 0xF;208 uint32_t u32Stepping = u32CpuVersion & 0xF;206 uint32_t const u32Family = u32CpuVersion >> 8; 207 uint32_t const u32Model = (u32CpuVersion >> 4) & 0xF; 208 uint32_t const u32Stepping = u32CpuVersion & 0xF; 209 209 if ( (fFeatures & X86_CPUID_FEATURE_EDX_SEP) 210 210 && ( u32Family != 6 /* (> pentium pro) */
Note:
See TracChangeset
for help on using the changeset viewer.