artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f65d8a
)
be more consistent when printing the memory values at bootup - now also
author
graichen
<graichen@openbsd.org>
Sun, 29 Dec 1996 12:27:26 +0000
(12:27 +0000)
committer
graichen
<graichen@openbsd.org>
Sun, 29 Dec 1996 12:27:26 +0000
(12:27 +0000)
the BIOS mem stuff is printed in bytes - like the other values too
sys/arch/i386/i386/machdep.c
patch
|
blob
|
history
diff --git
a/sys/arch/i386/i386/machdep.c
b/sys/arch/i386/i386/machdep.c
index
183a376
..
cfa7aac
100644
(file)
--- a/
sys/arch/i386/i386/machdep.c
+++ b/
sys/arch/i386/i386/machdep.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: machdep.c,v 1.3
2 1996/12/10 23:34:12 niklas Exp $
*/
+/* $OpenBSD: machdep.c,v 1.3
3 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 = %ld
k 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));
/*