author | moel.mich |
Wed, 27 Jan 2010 18:12:51 +0000 | |
changeset 2 | 105939e4eb7e |
child 7 | 9523a3322777 |
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@1 | 14 |
W83627DHG = 0xA020 |
moel@1 | 15 |
} |
moel@1 | 16 |
|
moel@1 | 17 |
} |