Merge pull request #863 from Sonicadvance1/enable_invariant_tsc

Enables Invariant TSC CPUID bit
This commit is contained in:
Ryan Houdek 2021-03-18 12:39:08 -07:00 committed by GitHub
commit dbde2e400e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -448,6 +448,8 @@ FEXCore::CPUID::FunctionResults CPUIDEmu::Function_8000_0006h() {
FEXCore::CPUID::FunctionResults CPUIDEmu::Function_8000_0007h() {
FEXCore::CPUID::FunctionResults Res{};
Res.eax = (1 << 2); // APIC timer not affected by p-state
Res.edx =
(1 << 8); // Invariant TSC
return Res;
}