mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-08-24 10:58:02 +00:00
18 lines
300 B
C#
18 lines
300 B
C#
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OpenHardwareMonitor.Hardware.LPC {
|
|||
|
|
|||
|
public enum Chip : ushort {
|
|||
|
Unknown = 0,
|
|||
|
IT8716F = 0x8716,
|
|||
|
IT8718F = 0x8718,
|
|||
|
IT8720F = 0x8720,
|
|||
|
IT8726F = 0x8726,
|
|||
|
W83627DHG = 0xA020
|
|||
|
}
|
|||
|
|
|||
|
}
|