Set BIOS checksum at 0xfffff.
diff --git a/src/post.c b/src/post.c
index 33f14f4..b41e77f 100644
--- a/src/post.c
+++ b/src/post.c
@@ -329,6 +329,9 @@
     // Present the user with a bootup menu.
     interactive_bootmenu();
 
+    // Setup bios checksum.
+    *(u8*)0xfffff = -checksum((u8*)0xf0000, 0xffff);
+
     // Prep for boot process.
     make_bios_readonly();
     clear_bss();