Message ID | 473191351003080308x1dcded56ted4fde0458767f8c@mail.gmail.com |
---|---|
State | New |
Headers | show |
diff --git a/hw/vga-isa.c b/hw/vga-isa.c index 7937144..071134a 100644 --- a/hw/vga-isa.c +++ b/hw/vga-isa.c @@ -45,5 +45,8 @@ int isa_vga_init(void) vga_init_vbe(s); /* ROM BIOS */ rom_add_vga(VGABIOS_FILENAME); +#ifdef TARGET_I386 + rom_add_file(VGABIOS_FILENAME,NULL,0xc0000); +#endif return 0; } diff --git a/hw/vga-pci.c b/hw/vga-pci.c index eef78ed..f083110 100644 --- a/hw/vga-pci.c +++ b/hw/vga-pci.c @@ -109,6 +109,9 @@ static int pci_vga_initfn(PCIDevice *dev) vga_init_vbe(s); /* ROM BIOS */ rom_add_vga(VGABIOS_FILENAME); +#ifdef TARGET_I386 + rom_add_file(VGABIOS_FILENAME,NULL,0xc0000); +#endif return 0; }