author | moel.mich |
Thu, 28 Jan 2010 23:29:39 +0000 | |
changeset 7 | 9523a3322777 |
parent 1 | 361e324a0ed4 |
child 16 | e9abdc6e05af |
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@1 | 10 |
IT8716F = 0x8716, |
moel@1 | 11 |
IT8718F = 0x8718, |
moel@1 | 12 |
IT8720F = 0x8720, |
moel@1 | 13 |
IT8726F = 0x8726, |
moel@7 | 14 |
W83627DHG = 0xA020, |
moel@7 | 15 |
F71882FG = 0x0541 |
moel@1 | 16 |
} |
moel@1 | 17 |
|
moel@1 | 18 |
} |