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 }
16
17 }