Skip to content

Commit

Permalink
Merge pull request #3738 from Sonicadvance1/cpuid_label
Browse files Browse the repository at this point in the history
CPUID: Update labeling on some reserved bits
  • Loading branch information
Sonicadvance1 authored Jun 21, 2024
2 parents f489135 + e614340 commit 2da1e90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FEXCore/Source/Interface/Core/CPUID.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -887,15 +887,15 @@ FEXCore::CPUID::FunctionResults CPUIDEmu::Function_8000_0001h(uint32_t Leaf) con
(0 << 18) | // Reserved
(0 << 19) | // Reserved
(0 << 20) | // Reserved
(0 << 21) | // Reserved
(0 << 21) | // XOP-TBM
(0 << 22) | // Topology extensions support
(0 << 23) | // Core performance counter extensions
(0 << 24) | // NB performance counter extensions
(0 << 25) | // Reserved
(0 << 26) | // Data breakpoints extensions
(0 << 27) | // Performance TSC
(0 << 28) | // L2 perf counter extensions
(0 << 29) | // Reserved
(0 << 29) | // MONITORX
(0 << 30) | // Reserved
(0 << 31); // Reserved

Expand Down

0 comments on commit 2da1e90

Please sign in to comment.