From 23f881aa29e679dffaa29cdf08448e13c6b41a5b Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Wed, 5 Apr 2006 20:57:18 +0000 Subject: [PATCH] Hack to mask 1586 ('extended family') as 686 --- lib/i386/misc/getprocessor.s | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/i386/misc/getprocessor.s b/lib/i386/misc/getprocessor.s index 3f6fe174c..2b00a39b0 100755 --- a/lib/i386/misc/getprocessor.s +++ b/lib/i386/misc/getprocessor.s @@ -27,6 +27,10 @@ _getprocessor: .data1 0x0F, 0xA2 ! CPUID instruction tells the processor type andb ah, 0x0F ! Extract the family (5, 6, ...) movzxb eax, ah + cmp eax, 15 ! 15: extended family + jne direct + mov eax, 6 ! Make it 686 +direct: imul eax, 100 ! 500, 600, ... add eax, 86 ! 586, 686, ... mov 7*4(esp), eax ! Pass eax through