Fixes to Atom identification.
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user