aboutsummaryrefslogtreecommitdiffstats
path: root/src/hw/ramdisk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hw/ramdisk.c')
-rw-r--r--src/hw/ramdisk.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/hw/ramdisk.c b/src/hw/ramdisk.c
index 4cdf95f9..adec1d1b 100644
--- a/src/hw/ramdisk.c
+++ b/src/hw/ramdisk.c
@@ -7,8 +7,9 @@
#include "biosvar.h" // GET_GLOBALFLAT
#include "block.h" // struct drive_s
#include "bregs.h" // struct bregs
+#include "e820map.h" // e820_add
#include "malloc.h" // memalign_tmphigh
-#include "memmap.h" // add_e820
+#include "memmap.h" // PAGE_SIZE
#include "output.h" // dprintf
#include "romfile.h" // romfile_findprefix
#include "stacks.h" // call16_int
@@ -41,7 +42,7 @@ ramdisk_setup(void)
warn_noalloc();
return;
}
- add_e820((u32)pos, size, E820_RESERVED);
+ e820_add((u32)pos, size, E820_RESERVED);
// Copy image into ram.
int ret = file->copy(file, pos, size);