MFi386: revision 1.8.

This commit is contained in:
nyan 2005-12-21 06:09:47 +00:00
parent a924487cfe
commit c3407b9b23

View File

@ -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;
}