summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--target-i386/helper.c4
1 files 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;