mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
MFi386: revision 1.8.
This commit is contained in:
parent
2d908c8204
commit
8b891b8d17
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue