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:
parent
cb181d6f91
commit
cd6380605c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue