Fixes to Atom identification.

This commit is contained in:
dev
2011-01-12 20:06:22 +00:00
parent c6a2e99a0d
commit 330f1f341e

View File

@ -326,10 +326,10 @@ public class CPUID {
public boolean IsPentium3Compatible() public boolean IsPentium3Compatible()
{ {
// Atom // Atom
if (getCPUExtendedModel() == 1 && (getCPUFamily() == 6 && (getCPUModel() == 10))){ if (getCPUExtendedModel() == 1 && (getCPUFamily() == 6 && (getCPUModel() == 12))){
return true; return true;
// ?? // ??
} else if (getCPUFamily() > 6 || (getCPUFamily() == 6 && getCPUModel() >=7)){ } else if (getCPUExtendedModel() == 0 && (getCPUFamily() > 6 || (getCPUFamily() == 6 && getCPUModel() >=7))){
return true; return true;
} else { } else {
return false; return false;