diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-02-18 23:36:03 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-02-18 23:36:03 -0500 |
commit | 89a2f96de451d2dd4ea887b41c5425b051c93f8b (patch) | |
tree | b89b327f7ee8d301d9ad0954e5f2520d64bd4ad7 /src/memmap.h | |
parent | 4195349d78a215253e4ac1a0e1395dd4c8a7318c (diff) | |
download | seabios-89a2f96de451d2dd4ea887b41c5425b051c93f8b.tar.gz |
Convert VAR16VISIBLE, VAR16EXPORT, and VAR32VISIBLE to VARFSEG.
Convert all users of the alternative variable exports to VARFSEG.
There isn't a significant distinction between the existing types of
exports, so it's simpler to just use one type going forward.
The new VARFSEG declaration is only emitting when in 32bit mode, so
update and move some variables as needed.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/memmap.h')
-rw-r--r-- | src/memmap.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/memmap.h b/src/memmap.h index 783a0422..7bda56e2 100644 --- a/src/memmap.h +++ b/src/memmap.h @@ -22,11 +22,8 @@ void memmap_prepboot(void); // A typical OS page size #define PAGE_SIZE 4096 -// e820 map storage (defined in system.c) +// e820 map storage extern struct e820entry e820_list[]; extern int e820_count; -// Space for exported bios tables (defined in misc.c) -extern char BiosTableSpace[]; - #endif // e820map.h |