diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2011-07-16 13:13:12 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2011-07-16 13:15:27 -0400 |
commit | 533b6286cbc5a01e8aaafc2a8393a7d109f81958 (patch) | |
tree | 5d051ff2edeb3f62b982d5fcc4761bf9dd5448e7 /src/post.c | |
parent | 77b8536e5c9908fbe99c88d01462a36a3deb05b1 (diff) | |
download | seabios-533b6286cbc5a01e8aaafc2a8393a7d109f81958.tar.gz |
Run option rom visible PMM code in 32bit mode instead of 16bit mode.
Use call32() to jump into handle_pmm(). This reduces the amount of
16bit code needed.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/post.c')
-rw-r--r-- | src/post.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -210,6 +210,9 @@ startBoot(void) static void maininit(void) { + // Running at new code address - do code relocation fixups + malloc_fixupreloc(); + // Setup ivt/bda/ebda init_ivt(); init_bda(); |