x86: Enable three bits in the FamilyModelStepping ECX CPUID bitfield.

These are for the monitor/mwait instructions, SSSE3, and XSAVE.
This commit is contained in:
Gabe Black 2015-01-06 22:15:00 -08:00
parent cb181d6f91
commit cd6380605c

View file

@ -154,7 +154,7 @@ namespace X86ISA {
break;
case FamilyModelStepping:
result = CpuidResult(0x00020f51, 0x00000805,
0xe7dbfbff, 0x00000001);
0xe7dbfbff, 0x04000209);
break;
default:
warn("x86 cpuid: unimplemented function %u", funcNum);