Added experimental support for Intel 06_A5h CPUs (Intel Core i9-10900K and i5-10600K).

This commit is contained in:
Michael Möller
2020-05-22 19:05:35 +02:00
parent 02dd78ff86
commit 1cd85881e8
2 changed files with 3 additions and 2 deletions

View File

@@ -210,6 +210,7 @@ namespace OpenHardwareMonitor.Hardware.CPU {
microarchitecture = Microarchitecture.IceLake;
tjMax = GetTjMaxFromMSR();
break;
case 0xA5:
case 0xA6: // Intel Core i3, i5, i7 10xxxU (14nm)
microarchitecture = Microarchitecture.CometLake;
tjMax = GetTjMaxFromMSR();

View File

@@ -10,5 +10,5 @@
using System.Reflection;
[assembly: AssemblyVersion("0.9.3.4")]
[assembly: AssemblyInformationalVersion("0.9.3.4 Alpha")]
[assembly: AssemblyVersion("0.9.3.5")]
[assembly: AssemblyInformationalVersion("0.9.3.5 Alpha")]