Reapply my fix for this:

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.
This commit is contained in:
Rodney W. Grimes 1995-04-18 23:55:26 +00:00
parent 77023b92da
commit 781434c1fc
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.119 1995/04/14 02:06:00 wpaul Exp $
* $Id: machdep.c,v 1.120 1995/04/17 16:49:50 phk Exp $
*/
#include "npx.h"
@ -534,7 +534,7 @@ identifycpu()
printf(" Stepping=%d", cpu_id & 0xf);
if (cpu_high > 0) {
#define FEATUREFMT "\020\001FPU\002VME\003PSE\004MCE\005CX8\006APIC"
printf(" Features=0x%b", cpu_feature, FEATUREFMT);
printf("\n Features=0x%b", cpu_feature, FEATUREFMT);
}
}
printf("\n");

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.119 1995/04/14 02:06:00 wpaul Exp $
* $Id: machdep.c,v 1.120 1995/04/17 16:49:50 phk Exp $
*/
#include "npx.h"
@ -534,7 +534,7 @@ identifycpu()
printf(" Stepping=%d", cpu_id & 0xf);
if (cpu_high > 0) {
#define FEATUREFMT "\020\001FPU\002VME\003PSE\004MCE\005CX8\006APIC"
printf(" Features=0x%b", cpu_feature, FEATUREFMT);
printf("\n Features=0x%b", cpu_feature, FEATUREFMT);
}
}
printf("\n");