--- trunk/src/machines/machine_qemu.c 2007/10/08 16:20:32 29 +++ trunk/src/machines/machine_qemu.c 2007/10/08 16:20:40 30 @@ -25,7 +25,7 @@ * SUCH DAMAGE. * * - * $Id: machine_qemu.c,v 1.2 2006/07/11 17:24:17 debug Exp $ + * $Id: machine_qemu.c,v 1.4 2006/08/12 19:31:36 debug Exp $ * * This file contains semi-bogus machine descriptions for experimental * machines, mimicing those emulated by Fabrice Bellard's QEMU. @@ -52,8 +52,9 @@ machine->machine_name = "QEMU MIPS"; cpu->byte_order = EMUL_BIG_ENDIAN; - /* An ISA bus at 0x14000000... */ - bus_isa_init(machine, 0, 0x14000000ULL, 0x18000000ULL, 8, 24); + /* An ISA bus, I/O ports at 0x14000000, memory at 0x10000000... */ + bus_isa_init(machine, BUS_ISA_IDE0 | BUS_ISA_IDE1, + 0x14000000ULL, 0x10000000ULL, 8, 24); /* ... and an ISA interrupt controller, connected to MIPS irq 2: */ machine->md_interrupt = isa8_interrupt;