mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-09-05 16:55:19 +00:00
89 lines
1.5 KiB
C#
89 lines
1.5 KiB
C#
/*
|
|
|
|
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/.
|
|
|
|
Copyright (C) 2009-2012 Michael Möller <mmoeller@openhardwaremonitor.org>
|
|
|
|
*/
|
|
|
|
namespace OpenHardwareMonitor.Hardware.Mainboard {
|
|
|
|
internal enum Model {
|
|
// ASRock
|
|
_880GMH_USB3,
|
|
AOD790GX_128M,
|
|
P55_Deluxe,
|
|
|
|
// ASUS
|
|
Crosshair_III_Formula,
|
|
M2N_SLI_DELUXE,
|
|
M4A79XTD_EVO,
|
|
P5W_DH_Deluxe,
|
|
P6T,
|
|
P6X58D_E,
|
|
P8P67,
|
|
P8P67_EVO,
|
|
P8P67_PRO,
|
|
P8P67_M_PRO,
|
|
P8Z77_V,
|
|
P9X79,
|
|
Rampage_Extreme,
|
|
Rampage_II_GENE,
|
|
|
|
// DFI
|
|
LP_BI_P45_T2RS_Elite,
|
|
LP_DK_P55_T3eH9,
|
|
|
|
// ECS
|
|
A890GXM_A,
|
|
|
|
// EVGA
|
|
X58_SLI_Classified,
|
|
|
|
// Gigabyte
|
|
_965P_S3,
|
|
EP45_DS3R,
|
|
EP45_UD3R,
|
|
EX58_EXTREME,
|
|
EX58_UD3R,
|
|
G41M_Combo,
|
|
G41MT_S2,
|
|
G41MT_S2P,
|
|
GA_MA770T_UD3,
|
|
GA_MA770T_UD3P,
|
|
GA_MA785GM_US2H,
|
|
GA_MA785GMT_UD2H,
|
|
GA_MA78LM_S2H,
|
|
GA_MA790X_UD3P,
|
|
H55_USB3,
|
|
H55N_USB3,
|
|
H61M_DS2_REV_1_2,
|
|
H61M_USB3_B3_REV_2_0,
|
|
H67A_UD3H_B3,
|
|
H67A_USB3_B3,
|
|
P35_DS3,
|
|
P35_DS3L,
|
|
P55_UD4,
|
|
P55A_UD3,
|
|
P55M_UD4,
|
|
P67A_UD3_B3,
|
|
P67A_UD3R_B3,
|
|
P67A_UD4_B3,
|
|
P8Z68_V_PRO,
|
|
X38_DS5,
|
|
X58A_UD3R,
|
|
Z68A_D3H_B3,
|
|
Z68AP_D3,
|
|
Z68X_UD3H_B3,
|
|
Z68X_UD7_B3,
|
|
|
|
// Shuttle
|
|
FH67,
|
|
|
|
// Unknown
|
|
Unknown
|
|
}
|
|
}
|