diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-08-16 21:59:40 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-08-16 21:59:40 -0400 |
commit | a3855adbde97f3bb71e2d5f153be7304ac700a89 (patch) | |
tree | e13407187d715c8dc546affcf8bf5bdef9d3bf29 /src/memmap.h | |
parent | 1f83625f4861b1118e3392adb1da96a0d24a94cb (diff) | |
download | seabios-a3855adbde97f3bb71e2d5f153be7304ac700a89.tar.gz |
Add support for using floppy images in CBFS.
Add new "ramdisk" type for disk accesses.
Extract out high-mem finding code from pmm into find_high_area().
Fix bug in GDB_BASE and GDT_LIMIT macros (wrong bit shifts).
Diffstat (limited to 'src/memmap.h')
-rw-r--r-- | src/memmap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/memmap.h b/src/memmap.h index 51471d69..4494538d 100644 --- a/src/memmap.h +++ b/src/memmap.h @@ -19,6 +19,7 @@ struct e820entry { void add_e820(u64 start, u64 size, u32 type); void memmap_setup(); void memmap_finalize(); +struct e820entry *find_high_area(u32 size); // e820 map storage (defined in system.c) extern struct e820entry e820_list[]; |