Fix bug in emulator mptable creation - space not reserved.
authorKevin O'Connor <kevin@koconnor.net>
Sat, 28 Feb 2009 16:46:40 +0000 (11:46 -0500)
committerKevin O'Connor <kevin@koconnor.net>
Sat, 28 Feb 2009 16:46:40 +0000 (11:46 -0500)
Looks like a commit error.

src/mptable.c

index c0415a7894bc38caf68cf0be013125f35d70fbb6..9e030fe8392435cbd55155048d31ff3ce68db245 100644 (file)
@@ -34,6 +34,7 @@ mptable_init(void)
         dprintf(1, "No room for MPTABLE!\n");
         return;
     }
+    bios_table_cur_addr = start + length;
 
     /* floating pointer structure */
     struct mptable_floating_s *floating = (void*)start;