author | moel.mich |
Sun, 31 Jan 2010 22:00:31 +0000 | |
changeset 15 | 0e812fe67bac |
parent 1 | 361e324a0ed4 |
child 16 | e9abdc6e05af |
permissions | -rw-r--r-- |
1
2 using System;
3 using System.Collections.Generic;
4 using System.Text;
6 namespace OpenHardwareMonitor.Hardware.LPC {
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 }
18 }