Skip to content

Commit

Permalink
Fix inverted did / fid on 12h.
Browse files Browse the repository at this point in the history
The PDF shows them in a different order.
  • Loading branch information
kevinlekiller committed Nov 3, 2015
1 parent 5c29ba1 commit 1a831f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified amdctl
Binary file not shown.
4 changes: 2 additions & 2 deletions amdctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,8 @@ void checkFamily() {
break;
case AMD12H:
DIDS = 8;
CPU_DID_BITS = "8:4";
CPU_FID_BITS = "3:0";
CPU_DID_BITS = "3:0";
CPU_FID_BITS = "8:4";
break;
case AMD15H:
if (cpuModel > 0x0f) {
Expand Down

0 comments on commit 1a831f8

Please sign in to comment.