diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1995-04-06 07:55:42 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1995-04-06 07:55:42 +0000 |
commit | 9c0b0dd073de234d3e12b4e3119425e54ff226ba (patch) | |
tree | 732989dbca724e4d61fe8066b1edd52f1310750d /sys/amd64 | |
parent | 80d01221fba6378750d13255544b1470c28a7cf4 (diff) | |
download | FreeBSD-src-9c0b0dd073de234d3e12b4e3119425e54ff226ba.zip FreeBSD-src-9c0b0dd073de234d3e12b4e3119425e54ff226ba.tar.gz |
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
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/amd64/machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c index be5807a..bd8196a 100644 --- a/sys/amd64/amd64/machdep.c +++ b/sys/amd64/amd64/machdep.c @@ -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"); } /* |