mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-26 03:21:50 -06:00
CPUID Fn8000_0001.EAX is family/model/stepping, not features
Signed-off-by: Andre Przywara <andre.przywara@amd.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
fe4bce09b6
commit
f441bee871
1 changed files with 1 additions and 1 deletions
|
@ -1651,7 +1651,7 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count,
|
||||||
*ecx = env->cpuid_vendor3;
|
*ecx = env->cpuid_vendor3;
|
||||||
break;
|
break;
|
||||||
case 0x80000001:
|
case 0x80000001:
|
||||||
*eax = env->cpuid_features;
|
*eax = env->cpuid_version;
|
||||||
*ebx = 0;
|
*ebx = 0;
|
||||||
*ecx = env->cpuid_ext3_features;
|
*ecx = env->cpuid_ext3_features;
|
||||||
*edx = env->cpuid_ext2_features;
|
*edx = env->cpuid_ext2_features;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue