Output the CPU features line during the probe on a seperate line, for

folks with lots of features the output use to wrap and look ugle.

Reviewed by:	phk
This commit is contained in:
Rodney W. Grimes 1995-04-06 07:55:42 +00:00
parent 74fa89f4f5
commit 5f34517b1c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7644
2 changed files with 6 additions and 6 deletions

View file

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.114 1995/03/16 18:11:27 bde Exp $
* $Id: machdep.c,v 1.115 1995/03/17 04:19:19 davidg Exp $
*/
#include "npx.h"
@ -467,7 +467,7 @@ identifycpu()
case 0x520: printf("735\\90 or 815\\100"); break;
}
}
printf(" Stepping=%d", cpu_id & 0xf);
printf(" Stepping=%d\n", cpu_id & 0xf);
if (cpu_high > 0) {
printf(" Features=0x%lx",cpu_feature);
if (cpu_feature & 0x1) printf(" FPU");
@ -476,8 +476,8 @@ identifycpu()
if (cpu_feature & 0x80) printf(" MCE");
if (cpu_feature & 0x100) printf(" CX8");
if (cpu_feature & 0x200) printf(" APIC");
printf("\n");
}
printf("\n");
}
/*

View file

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.114 1995/03/16 18:11:27 bde Exp $
* $Id: machdep.c,v 1.115 1995/03/17 04:19:19 davidg Exp $
*/
#include "npx.h"
@ -467,7 +467,7 @@ identifycpu()
case 0x520: printf("735\\90 or 815\\100"); break;
}
}
printf(" Stepping=%d", cpu_id & 0xf);
printf(" Stepping=%d\n", cpu_id & 0xf);
if (cpu_high > 0) {
printf(" Features=0x%lx",cpu_feature);
if (cpu_feature & 0x1) printf(" FPU");
@ -476,8 +476,8 @@ identifycpu()
if (cpu_feature & 0x80) printf(" MCE");
if (cpu_feature & 0x100) printf(" CX8");
if (cpu_feature & 0x200) printf(" APIC");
printf("\n");
}
printf("\n");
}
/*