[LinuxBIOS] MB1030 / 3036 I like 13 :D

Stefan Reinauer stepan at coresystems.de
Wed Apr 26 16:05:26 CEST 2006


* Christian Sühs <chris at suehsi.de> [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: info at coresystems.de  · http://www.coresystems.de/
-------------- next part --------------
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
 }


More information about the coreboot mailing list