I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 69c2ed77 authored by zzz's avatar zzz
Browse files

recognize Intel model 69

parent 6f09224b
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ class IntelInfoImpl extends CPUIDCPUInfo implements IntelCPUInfo ...@@ -60,7 +60,7 @@ class IntelInfoImpl extends CPUIDCPUInfo implements IntelCPUInfo
{ {
// http://en.wikipedia.org/wiki/Cpuid // http://en.wikipedia.org/wiki/Cpuid
// http://web.archive.org/web/20110307080258/http://www.intel.com/Assets/PDF/appnote/241618.pdf // http://web.archive.org/web/20110307080258/http://www.intel.com/Assets/PDF/appnote/241618.pdf
// http://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-software-developer-vol-2a-manual.pdf // http://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-software-developer-manual-325462.pdf
String modelString = null; String modelString = null;
int family = CPUID.getCPUFamily(); int family = CPUID.getCPUFamily();
int model = CPUID.getCPUModel(); int model = CPUID.getCPUModel();
...@@ -349,6 +349,11 @@ class IntelInfoImpl extends CPUIDCPUInfo implements IntelCPUInfo ...@@ -349,6 +349,11 @@ class IntelInfoImpl extends CPUIDCPUInfo implements IntelCPUInfo
// most flags are set above // most flags are set above
// isCoreiCompatible = true is the default // isCoreiCompatible = true is the default
// 22 nm
case 0x45:
modelString = "Mobile Celeron";
break;
// Atom Silvermont / Bay Trail / Avoton 22 nm // Atom Silvermont / Bay Trail / Avoton 22 nm
// Supports SSE 4.2 // Supports SSE 4.2
case 0x4d: case 0x4d:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment