From d8134d91d9b7f9f1c7cd0d8acf33df2c25629907 Mon Sep 17 00:00:00 2001 From: ths Date: Thu, 13 Sep 2007 02:21:28 +0000 Subject: [PATCH] Intel cache info, by Filip Navara. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3162 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-i386/helper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target-i386/helper.c b/target-i386/helper.c index 3c051b9ea3..64c3a61325 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -1657,10 +1657,10 @@ void helper_cpuid(void) break; case 2: /* cache info: needed for Pentium Pro compatibility */ - EAX = 0x410601; + EAX = 1; EBX = 0; ECX = 0; - EDX = 0; + EDX = 0x2c307d; break; case 0x80000000: EAX = env->cpuid_xlevel;