diff --git a/target-i386/helper.c b/target-i386/helper.c index bad3f7c1b6..3c7424f887 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -1751,6 +1751,12 @@ void helper_cpuid(void) ECX = 0; EDX = 0; break; + case 0x8000000A: + EAX = 0x00000001; + EBX = 0; + ECX = 0; + EDX = 0; + break; default: /* reserved values: zero */ EAX = 0; diff --git a/target-i386/helper2.c b/target-i386/helper2.c index 6d40c641fc..4916d1f5fe 100644 --- a/target-i386/helper2.c +++ b/target-i386/helper2.c @@ -150,7 +150,7 @@ static x86_def_t x86_defs[] = { .ext2_features = (PPRO_FEATURES & 0x0183F3FF) | CPUID_EXT2_LM | CPUID_EXT2_SYSCALL | CPUID_EXT2_NX, .ext3_features = CPUID_EXT3_SVM, - .xlevel = 0x80000008, + .xlevel = 0x8000000A, }, #endif {