Hardware/LPC/Chip.cs
author moel.mich
Fri, 29 Jan 2010 19:20:44 +0000
changeset 8 39067efce486
parent 1 361e324a0ed4
child 16 e9abdc6e05af
permissions -rw-r--r--
Fixed ADL dll loading. The name of the dll is always atiadlxx, except when running as 32-bit app on 64-bit systems (atiadlxy in that case).
     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     IT8716F = 0x8716,
    11     IT8718F = 0x8718,
    12     IT8720F = 0x8720,
    13     IT8726F = 0x8726,
    14     W83627DHG = 0xA020,
    15     F71882FG = 0x0541
    16   }
    17 
    18 }