diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-10 00:10:04 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-10 00:10:04 +0000 |
commit | 408e7837aa64e57dc3377753448b5047946f0c50 (patch) | |
tree | 195e5b7d1dafe8e9087279bd4d749d849e21278e /target-i386 | |
parent | 49140a7748a6e8095cd93f2f58e33a9a8c78167b (diff) |
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
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/helper2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/helper2.c b/target-i386/helper2.c index 8ce5425830..327d54bbec 100644 --- a/target-i386/helper2.c +++ b/target-i386/helper2.c @@ -114,7 +114,7 @@ CPUX86State *cpu_x86_init(void) env->cpuid_ext_features = CPUID_EXT_SSE3; env->cpuid_features |= CPUID_FXSR | CPUID_MMX | CPUID_SSE | CPUID_SSE2 | CPUID_PAE | CPUID_SEP; env->cpuid_features |= CPUID_APIC; - env->cpuid_xlevel = 0; + env->cpuid_xlevel = 0x80000006; { const char *model_id = "QEMU Virtual CPU version " QEMU_VERSION; int c, len, i; |