Skip to content

Commit

Permalink
More deterministic CPUID dumps
Browse files Browse the repository at this point in the history
  • Loading branch information
Marat Dukhan committed Sep 25, 2017
1 parent 6af5a3d commit afa11ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/cpuid-dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ int main(int argc, char** argv) {
}
break;
default:
print_cpuid(cpuid(eax), eax);
print_cpuid(cpuidex(eax, 0), eax);
break;
}
}
Expand All @@ -122,7 +122,7 @@ int main(int argc, char** argv) {
print_cpuid_brand_string(cpuid(eax), eax);
break;
default:
print_cpuid(cpuid(eax), eax);
print_cpuid(cpuidex(eax, 0), eax);
}
}
}

0 comments on commit afa11ca

Please sign in to comment.