diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-09-02 17:00:43 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-09-02 17:00:43 +0000 |
commit | 90185ba5e749c2e6de424bcb2c187566c061afeb (patch) | |
tree | 19d697c62c9606893e328e56caee9b633758a854 /sys/arch/i386 | |
parent | 3b72f1e86cce887e20430a803b2785feeaaa5a65 (diff) |
whine about conv memory
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/stand/libsa/memprobe.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/libsa/memprobe.c b/sys/arch/i386/stand/libsa/memprobe.c index ba89600a367..4ba974db828 100644 --- a/sys/arch/i386/stand/libsa/memprobe.c +++ b/sys/arch/i386/stand/libsa/memprobe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: memprobe.c,v 1.10 1997/08/22 20:13:44 mickey Exp $ */ +/* $OpenBSD: memprobe.c,v 1.11 1997/09/02 17:00:42 mickey Exp $ */ /* * Copyright (c) 1997 Tobias Weingartner @@ -47,6 +47,8 @@ memprobe() :: "%ecx", "%edx", "cc"); BIOS_vars.bios_cnvmem &= 0xffff; + printf("%d Kb conventional memory.\n", BIOS_vars.bios_cnvmem); + /* probe extended memory * * There is no need to do this in assembly language. This is @@ -60,7 +62,7 @@ memprobe() break; } - printf("Found %d KB extended memory.\n", ram-1024); + printf("%d Kb extended memory.\n", ram-1024); BIOS_vars.bios_extmem = ram - 1024; } |