From: Roy Tam Date: Thu, 15 Oct 2009 14:07:12 +0000 (+0800) Subject: MIPS jazz: create isa bus X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5041fccd8ebed677f4d3012011657f8cc2340ea4;p=qemu.git MIPS jazz: create isa bus As i8259 in mips_jazz.c is not correctly connected to the isa bus, the mc146818rtc isa devices fails to be created. Signed-off-by: Roy Tam Signed-off-by: Aurelien Jarno --- diff --git a/hw/mips_jazz.c b/hw/mips_jazz.c index 3ff367d5c9..281713cca5 100644 --- a/hw/mips_jazz.c +++ b/hw/mips_jazz.c @@ -185,6 +185,8 @@ void mips_jazz_init (ram_addr_t ram_size, /* ISA devices */ i8259 = i8259_init(env->irq[4]); + isa_bus_new(NULL); + isa_bus_irqs(i8259); DMA_init(0); pit = pit_init(0x40, i8259[0]); pcspk_init(pit);