Files
openhardwaremonitor/Hardware/Mainboard/Model.cs

69 lines
1.2 KiB
C#
Raw Normal View History

2010-06-05 11:15:16 +00:00
/*
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
2010-06-05 11:15:16 +00:00
Copyright (C) 2009-2012 Michael Möller <mmoeller@openhardwaremonitor.org>
2010-06-05 11:15:16 +00:00
*/
namespace OpenHardwareMonitor.Hardware.Mainboard {
internal enum Model {
// ASRock
_880GMH_USB3,
AOD790GX_128M,
P55_Deluxe,
2010-06-03 22:40:18 +00:00
// ASUS
2010-06-05 18:59:54 +00:00
Crosshair_III_Formula,
M2N_SLI_DELUXE,
M4A79XTD_EVO,
2010-06-05 18:59:54 +00:00
P5W_DH_Deluxe,
P6T,
P6X58D_E,
P8P67,
P8P67_EVO,
2011-03-19 22:55:05 +00:00
P8P67_PRO,
P8P67_M_PRO,
P9X79,
2010-08-24 20:14:54 +00:00
Rampage_Extreme,
Rampage_II_GENE,
2010-06-03 22:40:18 +00:00
// DFI
LP_BI_P45_T2RS_Elite,
2010-06-05 11:15:16 +00:00
LP_DK_P55_T3eH9,
// ECS
A890GXM_A,
2010-06-05 11:15:16 +00:00
// EVGA
X58_SLI_Classified,
// Gigabyte
2010-06-03 22:40:18 +00:00
_965P_S3,
EP45_DS3R,
2010-06-03 22:40:18 +00:00
EP45_UD3R,
2010-06-05 18:59:54 +00:00
EX58_EXTREME,
2010-07-14 21:10:26 +00:00
GA_MA770T_UD3,
GA_MA785GMT_UD2H,
H67A_UD3H_B3,
P35_DS3,
2010-06-05 18:59:54 +00:00
P35_DS3L,
P55_UD4,
2010-08-15 17:56:57 +00:00
P55M_UD4,
P67A_UD4_B3,
P8Z68_V_PRO,
2010-06-03 22:40:18 +00:00
X38_DS5,
X58A_UD3R,
Z68X_UD7_B3,
// Shuttle
FH67,
// Unknown
Unknown
}
}