diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | Intel/identify.c | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -4,6 +4,7 @@ * */identify.c: used tuple macro to clean up code. * dumpregs.c: make more generic, move to identify.c * */identify.c: reduce duplication, and use generic dumpregs() + * Intel/identify.c: identify C1 stepping of P4 Xeon 2002-06-18 Dave Jones <davej@suse.de> diff --git a/Intel/identify.c b/Intel/identify.c index 7a751b4..b0b0bb6 100644 --- a/Intel/identify.c +++ b/Intel/identify.c @@ -1,5 +1,5 @@ /* - * $Id: identify.c,v 1.28 2002/07/12 00:36:19 davej Exp $ + * $Id: identify.c,v 1.29 2002/07/12 13:01:24 davej Exp $ * This file is part of x86info. * (C) 2001 Dave Jones. * @@ -428,6 +428,9 @@ void Identify_Intel (struct cpudata *cpu) case 4: nameptr+=sprintf (nameptr, "%s", " [B0]"); break; + case 7: + nameptr+=sprintf (nameptr, "%s", " [C1]"); + break; } break; case 0xF40: |