Commit 408e7837aa64e57dc3377753448b5047946f0c50
1 parent
49140a77
Fix the reported xlevel for Intel CPU, by Filip Navara.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3159 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
target-i386/helper2.c
... | ... | @@ -114,7 +114,7 @@ CPUX86State *cpu_x86_init(void) |
114 | 114 | env->cpuid_ext_features = CPUID_EXT_SSE3; |
115 | 115 | env->cpuid_features |= CPUID_FXSR | CPUID_MMX | CPUID_SSE | CPUID_SSE2 | CPUID_PAE | CPUID_SEP; |
116 | 116 | env->cpuid_features |= CPUID_APIC; |
117 | - env->cpuid_xlevel = 0; | |
117 | + env->cpuid_xlevel = 0x80000006; | |
118 | 118 | { |
119 | 119 | const char *model_id = "QEMU Virtual CPU version " QEMU_VERSION; |
120 | 120 | int c, len, i; | ... | ... |