Displaying 1 result from an estimated 1 matches for "bios_offset".
Did you mean:
bio_offset
2005 May 27
0
[PATCH] ioemu: enable Cirrus VGA emulation
...ter_physical_memory(0, ram_size, 0);
+// cpu_register_physical_memory(0, ram_size, 0);
#ifndef NOBIOS
/* BIOS load */
@@ -436,9 +436,9 @@
/* map all the bios at the top of memory */
cpu_register_physical_memory((uint32_t)(-bios_size),
bios_size, bios_offset | IO_MEM_ROM);
+#endif
bochs_bios_init();
-#endif
if (linux_boot) {
uint8_t bootsect[512];
@@ -508,9 +508,6 @@
register_ioport_write(0xf0, 1, 1, ioportF0_write, NULL);
-#ifdef NOBIOS
- cirrus_vga_enabled = 0;
-#endif
if (cirrus_vga_enabled) {
if...