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:
Michael Möller
2010-01-31 20:57:18 +00:00
parent 1f922873de
commit 92f872b244
7 changed files with 230 additions and 8 deletions

View File

@@ -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));