Skip to content

Commit 1cd8588

Browse files
committed
Added experimental support for Intel 06_A5h CPUs (Intel Core i9-10900K and i5-10600K).
1 parent 02dd78f commit 1cd8588

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Hardware/CPU/IntelCPU.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ public IntelCPU(int processorIndex, CPUID[][] cpuid, ISettings settings)
210210
microarchitecture = Microarchitecture.IceLake;
211211
tjMax = GetTjMaxFromMSR();
212212
break;
213+
case 0xA5:
213214
case 0xA6: // Intel Core i3, i5, i7 10xxxU (14nm)
214215
microarchitecture = Microarchitecture.CometLake;
215216
tjMax = GetTjMaxFromMSR();

Properties/AssemblyVersion.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ This Source Code Form is subject to the terms of the Mozilla Public
1010

1111
using System.Reflection;
1212

13-
[assembly: AssemblyVersion("0.9.3.4")]
14-
[assembly: AssemblyInformationalVersion("0.9.3.4 Alpha")]
13+
[assembly: AssemblyVersion("0.9.3.5")]
14+
[assembly: AssemblyInformationalVersion("0.9.3.5 Alpha")]

0 commit comments

Comments
 (0)