diff options
author | Thomas Graichen <graichen@cvs.openbsd.org> | 1996-12-29 12:27:27 +0000 |
---|---|---|
committer | Thomas Graichen <graichen@cvs.openbsd.org> | 1996-12-29 12:27:27 +0000 |
commit | 4f578e36538a39081ba737b8c71322235e03e58f (patch) | |
tree | 6020a938c3661af0200109dd829449c515f7d0e5 | |
parent | 9c685a261608b4ae7d43aa5be55b8dd0cb3cfe69 (diff) |
be more consistent when printing the memory values at bootup - now also
the BIOS mem stuff is printed in bytes - like the other values too
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 183a37690c6..cfa7aac7cdf 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.32 1996/12/10 23:34:12 niklas Exp $ */ +/* $OpenBSD: machdep.c,v 1.33 1996/12/29 12:27:26 graichen Exp $ */ /* $NetBSD: machdep.c,v 1.202 1996/05/18 15:54:59 christos Exp $ */ /*- @@ -215,8 +215,8 @@ cpu_startup() startrtclock(); identifycpu(); - printf("BIOS mem = %ldk conventional, %ldk extended\n", - cnvmem, extmem); + printf("BIOS mem = %ld conventional, %ld extended\n", + 1024 * cnvmem, 1024 * extmem); printf("real mem = %d\n", ctob(physmem)); /* |