diff --git a/Hardware/Mainboard/Model.cs b/Hardware/Mainboard/Model.cs index e95f26d..8b5a3c3 100644 --- a/Hardware/Mainboard/Model.cs +++ b/Hardware/Mainboard/Model.cs @@ -16,7 +16,7 @@ The Initial Developer of the Original Code is Michael Möller . - Portions created by the Initial Developer are Copyright (C) 2009-2011 + Portions created by the Initial Developer are Copyright (C) 2009-2012 the Initial Developer. All Rights Reserved. Contributor(s): @@ -53,6 +53,7 @@ namespace OpenHardwareMonitor.Hardware.Mainboard { P8P67_EVO, P8P67_PRO, P8P67_M_PRO, + P9X79, Rampage_Extreme, Rampage_II_GENE, diff --git a/Hardware/Mainboard/SMBIOS.cs b/Hardware/Mainboard/SMBIOS.cs index 75ff917..8b68b4d 100644 --- a/Hardware/Mainboard/SMBIOS.cs +++ b/Hardware/Mainboard/SMBIOS.cs @@ -16,7 +16,7 @@ The Initial Developer of the Original Code is Michael Möller . - Portions created by the Initial Developer are Copyright (C) 2009-2011 + Portions created by the Initial Developer are Copyright (C) 2009-2012 the Initial Developer. All Rights Reserved. Contributor(s): @@ -343,6 +343,7 @@ namespace OpenHardwareMonitor.Hardware.Mainboard { case "ASRock": return Manufacturer.ASRock; case "ASUSTeK Computer INC.": + case "ASUSTeK COMPUTER INC.": return Manufacturer.ASUS; case "Dell Inc.": return Manufacturer.Dell; @@ -420,6 +421,8 @@ namespace OpenHardwareMonitor.Hardware.Mainboard { return Model.P8P67_PRO; case "P8P67-M PRO": return Model.P8P67_M_PRO; + case "P9X79": + return Model.P9X79; case "Rampage Extreme": return Model.Rampage_Extreme; case "Rampage II GENE": diff --git a/Hardware/Mainboard/SuperIOHardware.cs b/Hardware/Mainboard/SuperIOHardware.cs index 5745fc9..8cd2fb6 100644 --- a/Hardware/Mainboard/SuperIOHardware.cs +++ b/Hardware/Mainboard/SuperIOHardware.cs @@ -16,7 +16,7 @@ The Initial Developer of the Original Code is Michael Möller . - Portions created by the Initial Developer are Copyright (C) 2009-2011 + Portions created by the Initial Developer are Copyright (C) 2009-2012 the Initial Developer. All Rights Reserved. Contributor(s): @@ -896,6 +896,19 @@ namespace OpenHardwareMonitor.Hardware.Mainboard { f.Add(new Fan("Power Fan", 3)); f.Add(new Fan("Auxiliary Fan", 4)); break; + case Model.P9X79: // NCT6776F + v.Add(new Voltage("CPU VCore", 0)); + v.Add(new Voltage("+12V", 1, 11, 1)); + v.Add(new Voltage("Analog +3.3V", 2, 34, 34)); + v.Add(new Voltage("+3.3V", 3, 34, 34)); + v.Add(new Voltage("+5V", 4, 12, 3)); + v.Add(new Voltage("Standby +3.3V", 7, 34, 34)); + v.Add(new Voltage("VBAT", 8, 34, 34)); + t.Add(new Temperature("CPU", 0)); + t.Add(new Temperature("Motherboard", 3)); + for (int i = 0; i < superIO.Fans.Length; i++) + f.Add(new Fan("Fan #" + (i + 1), i)); + break; default: v.Add(new Voltage("CPU VCore", 0)); v.Add(new Voltage("Voltage #2", 1, true));