Skip to content

Commit 04ec083

Browse files
committed
Missed release commits
Changes I forgot to commit that made it into the release
1 parent fd7fabc commit 04ec083

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

src/SpdReaderWriterCore/Core.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ For overclockers and PC hardware enthusiasts
99
1010
*/
1111

12-
using System;
1312
using System.Diagnostics;
1413
using System.IO;
1514
using System.Reflection;

src/SpdReaderWriterCore/DeviceId.cs

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ namespace SpdReaderWriterCore {
1616
/// </summary>
1717
public enum DeviceId : ushort {
1818

19+
// Invalid
20+
Invalid = 0xFFFF,
21+
1922
// Old pre-PCH hardware
2023

2124
#region ICH
@@ -178,21 +181,21 @@ public enum DeviceId : ushort {
178181

179182
#region LGA1700
180183
B660 = 0x7A86,
184+
B760 = 0x7A06,
181185
H610 = 0x7A87,
182186
H670 = 0x7A85,
187+
H770 = 0x7A05,
188+
HM670 = 0x7A8C,
183189
Q670 = 0x7A83,
184190
W680 = 0x7A88,
185-
Z690 = 0x7A84,
186-
HM670 = 0x7A8C,
187191
WM690 = 0x7A8D,
188-
H770 = 0x7A05,
189-
B760 = 0x7A06,
192+
Z690 = 0x7A84,
190193
Z790 = 0x7A04,
191194
#endregion
192195

193196
// AMD
194-
FCH = 0x790B, // AM4/ZEN
195-
Hudson2 = 0x780B, // FM1/FM2(+)
197+
ZEN = 0x790B, // AM4/ZEN
198+
FCH = 0x780B, // FM1/FM2(+)
196199

197200
// Nvidia
198201
nForce2 = 0x0064,

0 commit comments

Comments
 (0)