From 76398c3233df0eebaaa5af0b24319c04c780944d Mon Sep 17 00:00:00 2001 From: Jerome Robert Date: Mon, 28 Dec 2015 19:26:43 +0100 Subject: [PATCH] Fix detection of AMD E2-3200 --- cpuid_x86.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cpuid_x86.c b/cpuid_x86.c index 6680b80..64ec02f 100644 --- a/cpuid_x86.c +++ b/cpuid_x86.c @@ -1229,6 +1229,7 @@ int get_cpuname(void){ case 2: return CPUTYPE_OPTERON; case 1: + case 3: case 10: return CPUTYPE_BARCELONA; case 6: -- 2.7.4