* Christian Sühs <[EMAIL PROTECTED]> [060426 16:56]:
> Waaah. Ok, how can I verify, that the vga.bios image is proper copied to 
> 0xc0000. I think the emulator reads from this adress, right?
> 
> Now, where the emu is stopping with halt_sys. I'm able to read out 
> 0xc0000 with dd and voila, there is definitivly not the vga.bios.

test with applied patch.

-- 
coresystems GmbH · Brahmsstr. 16 · D-79104 Freiburg i. Br.
      Tel.: +49 761 7668825 · Fax: +49 761 7664613
Email: [EMAIL PROTECTED]  · http://www.coresystems.de/
Index: src/devices/emulator/biosemu.c
===================================================================
--- src/devices/emulator/biosemu.c      (revision 2273)
+++ src/devices/emulator/biosemu.c      (working copy)
@@ -328,6 +328,11 @@
 
        printk_info("entering emulator\n");
 
+       for (i=0xc0000; i< 0xc8000; i++) {
+               printk_debug("%02x ", rdb(i));
+               if((i&16)==15) printk_debug("\n");
+       }
+       
        X86EMU_exec();
 #endif
 }
-- 
linuxbios mailing list
[email protected]
http://www.openbios.org/mailman/listinfo/linuxbios

Reply via email to