Hardware/Mainboard/Model.cs
author moel.mich
Sun, 27 May 2012 14:23:31 +0000
changeset 344 3145aadca3d2
parent 337 10283dd68bbb
child 357 fb8dc26f65a4
permissions -rw-r--r--
Changed the license to the Mozilla Public License 2.0 and update the licensing information.
     1 /*
     2  
     3   This Source Code Form is subject to the terms of the Mozilla Public
     4   License, v. 2.0. If a copy of the MPL was not distributed with this
     5   file, You can obtain one at http://mozilla.org/MPL/2.0/.
     6  
     7   Copyright (C) 2009-2012 Michael Möller <mmoeller@openhardwaremonitor.org>
     8 	
     9 */
    10 
    11 namespace OpenHardwareMonitor.Hardware.Mainboard {
    12 
    13   internal enum Model {
    14     // ASRock
    15     _880GMH_USB3,
    16     AOD790GX_128M,
    17     P55_Deluxe,
    18 
    19     // ASUS
    20     Crosshair_III_Formula,
    21     M2N_SLI_DELUXE,
    22     M4A79XTD_EVO,
    23     P5W_DH_Deluxe,    
    24     P6T,
    25     P6X58D_E,
    26     P8P67,
    27     P8P67_EVO,
    28     P8P67_PRO,
    29     P8P67_M_PRO,
    30     P9X79,
    31     Rampage_Extreme,
    32     Rampage_II_GENE,
    33 
    34     // DFI
    35     LP_BI_P45_T2RS_Elite,
    36     LP_DK_P55_T3eH9,
    37 
    38     // ECS
    39     A890GXM_A,
    40 
    41     // EVGA
    42     X58_SLI_Classified,
    43 
    44     // Gigabyte
    45     _965P_S3,
    46     EP45_DS3R,
    47     EP45_UD3R,
    48     EX58_EXTREME,
    49     GA_MA770T_UD3,
    50     GA_MA785GMT_UD2H,
    51     H67A_UD3H_B3,
    52     P35_DS3,
    53     P35_DS3L,
    54     P55_UD4,
    55     P55M_UD4,
    56     P67A_UD4_B3,
    57     P8Z68_V_PRO,
    58     X38_DS5,
    59     X58A_UD3R,
    60     Z68X_UD7_B3,
    61 
    62     // Shuttle
    63     FH67,
    64 
    65     // Unknown
    66     Unknown    
    67   }
    68 }