mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-08-31 14:25:16 +00:00
Release version 0.1.5. Added support for AMD family 0Fh CPUs. Fixed saving of wrong window size values for minimized forms (by not saving them).
This commit is contained in:
@@ -139,6 +139,10 @@ namespace OpenHardwareMonitor.Hardware.CPU {
|
||||
// check if processor supports a digital thermal sensor
|
||||
if (maxCPUID_EXT >= 7 && (cpuidExtData[7, 3] & 1) != 0) {
|
||||
switch (family) {
|
||||
case 0x0F:
|
||||
hardware.Add(new AMD0FCPU(name, family, model, stepping,
|
||||
cpuidData, cpuidExtData));
|
||||
break;
|
||||
case 0x10:
|
||||
hardware.Add(new AMD10CPU(name, family, model, stepping,
|
||||
cpuidData, cpuidExtData));
|
||||
|
Reference in New Issue
Block a user