diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-01-17 20:07:09 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-01-17 20:07:09 -0500 |
commit | df2c19ab31b5b9e52f30452d82f0bdd9b89db111 (patch) | |
tree | 2779c468f3411412b0df0381c9494904c08616ba /src/misc.c | |
parent | f5d025a7e139c865f322c8565008187a553ec1a6 (diff) | |
download | seabios-df2c19ab31b5b9e52f30452d82f0bdd9b89db111.tar.gz |
Reserve space for buffers in f-segment; don't allocate from freespace.
Define the e820list as a regular array.
Define a buffer for run-time built bios tables.
Reserving the space in advance should help prevent run-time errors
when space becomes tight.
Diffstat (limited to 'src/misc.c')
-rw-r--r-- | src/misc.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -14,6 +14,9 @@ u32 RamSize VAR16_32; // Amount of continuous ram >4Gig u64 RamSizeOver4G; +// Space for bios tables built an run-time. +u32 bios_table_cur_addr, bios_table_end_addr; +char BiosTableSpace[CONFIG_MAX_BIOSTABLE] VAR16_32; /**************************************************************** |