1
0
Fork 0
mirror of https://github.com/yuzu-emu/unicorn.git synced 2025-01-11 11:05:40 +00:00

i386: Fix Snowridge CPU model name and features

Changing the name to Snowridge from SnowRidge-Server.
There is no client model of Snowridge, so "-Server" is unnecessary.

Removing CPUID_EXT_VMX from Snowridge cpu feature list.

Backports commit ff656fcd338a70c4d9783a800733c4ab3806e5b0 from qemu
This commit is contained in:
Paul Lai 2019-08-08 19:52:15 -04:00 committed by Lioncash
parent a89fe5e865
commit 3b8e2180e7
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -2580,7 +2580,7 @@ static X86CPUDefinition builtin_x86_defs[] = {
.model_id = "Intel Xeon Processor (Icelake)",
},
{
.name = "SnowRidge-Server",
.name = "SnowRidge",
.level = 27,
.vendor = CPUID_VENDOR_INTEL,
.family = 6,
@ -2598,7 +2598,6 @@ static X86CPUDefinition builtin_x86_defs[] = {
CPUID_FXSR | CPUID_SSE | CPUID_SSE2,
.features[FEAT_1_ECX] =
CPUID_EXT_SSE3 | CPUID_EXT_PCLMULQDQ | CPUID_EXT_MONITOR |
CPUID_EXT_VMX |
CPUID_EXT_SSSE3 |
CPUID_EXT_CX16 |
CPUID_EXT_SSE41 |