diff options
Diffstat (limited to 'hw/mips_pica61.c')
-rw-r--r-- | hw/mips_pica61.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/mips_pica61.c b/hw/mips_pica61.c index 3f2a937e8c..40ea8b5a6a 100644 --- a/hw/mips_pica61.c +++ b/hw/mips_pica61.c @@ -166,7 +166,10 @@ void mips_pica61_init (int ram_size, int vga_ram_size, int boot_device, ds1225y_init(0x80009000, "nvram"); /* Video card */ - //isa_vga_init(ds, phys_ram_base + ram_size, ram_size, vga_ram_size); + /* FIXME: This card is not the real one which was in the original PICA, + * but let's do with what Qemu currenly emulates... */ + isa_vga_mm_init(ds, phys_ram_base + ram_size, ram_size, vga_ram_size, + 0x40000000, 0x60000000, 0); } QEMUMachine mips_pica61_machine = { |