From 8b891b8d17635a3d6079ff123b1a77ee3f52abe2 Mon Sep 17 00:00:00 2001 From: Yoshihiro Takahashi Date: Wed, 21 Dec 2005 06:09:47 +0000 Subject: [PATCH] MFi386: revision 1.8. --- sys/boot/pc98/libpc98/biosmem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/boot/pc98/libpc98/biosmem.c b/sys/boot/pc98/libpc98/biosmem.c index 4f22086c59d..b450922e3d2 100644 --- a/sys/boot/pc98/libpc98/biosmem.c +++ b/sys/boot/pc98/libpc98/biosmem.c @@ -34,7 +34,7 @@ __FBSDID("$FreeBSD$"); #include "libi386.h" #include "btxv86.h" -vm_offset_t memtop; +vm_offset_t memtop, memtop_copyin; u_int32_t bios_basemem, bios_extmem; void @@ -46,7 +46,7 @@ bios_getmem(void) *(u_int16_t *)PTOV(0xA1594) * 1024 * 1024; /* Set memtop to actual top of memory */ - memtop = 0x100000 + bios_extmem; + memtop = memtop_copyin = 0x100000 + bios_extmem; }