Hardware/LPC/Chip.cs
author moel.mich
Mon, 01 Feb 2010 22:11:06 +0000
changeset 19 890e8fca7f33
parent 16 e9abdc6e05af
child 21 ac4bfce27a02
permissions -rw-r--r--
Release version 0.1.8. Added support for W83627DHG-P super i/o chips.
     1 
     2 using System;
     3 using System.Collections.Generic;
     4 using System.Text;
     5 
     6 namespace OpenHardwareMonitor.Hardware.LPC {
     7 
     8   public enum Chip : ushort {
     9     Unknown = 0,
    10     IT8716 = 0x8716,
    11     IT8718 = 0x8718,
    12     IT8720 = 0x8720,
    13     IT8726 = 0x8726,
    14     W83627DHG = 0xA020,
    15     W83627DHGP = 0xB070,
    16     F71862 = 0x0601, 
    17     F71869 = 0x0814,
    18     F71882 = 0x0541,
    19     F71889 = 0x0723 
    20   }
    21 
    22 }