| author | moel.mich |
| Mon, 01 Feb 2010 21:04:14 +0000 | |
| changeset 18 | 49220085218d |
| parent 7 | 9523a3322777 |
| child 19 | 890e8fca7f33 |
| permissions | -rw-r--r-- |
| moel@1 | 1 |
|
| moel@1 | 2 |
using System; |
| moel@1 | 3 |
using System.Collections.Generic; |
| moel@1 | 4 |
using System.Text; |
| moel@1 | 5 |
|
| moel@1 | 6 |
namespace OpenHardwareMonitor.Hardware.LPC {
|
| moel@1 | 7 |
|
| moel@1 | 8 |
public enum Chip : ushort {
|
| moel@1 | 9 |
Unknown = 0, |
| moel@16 | 10 |
IT8716 = 0x8716, |
| moel@16 | 11 |
IT8718 = 0x8718, |
| moel@16 | 12 |
IT8720 = 0x8720, |
| moel@16 | 13 |
IT8726 = 0x8726, |
| moel@7 | 14 |
W83627DHG = 0xA020, |
| moel@16 | 15 |
F71862 = 0x0601, |
| moel@16 | 16 |
F71869 = 0x0814, |
| moel@16 | 17 |
F71882 = 0x0541, |
| moel@16 | 18 |
F71889 = 0x0723 |
| moel@1 | 19 |
} |
| moel@1 | 20 |
|
| moel@1 | 21 |
} |