From d6ffaaa8290963e1fb1cda2f36cd55740fc198f0 Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Tue, 2 Jun 2009 22:37:10 +0000 Subject: [PATCH] 02730: fiveside: Doesn't past rom check --- src/mame/drivers/ultrsprt.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/mame/drivers/ultrsprt.c b/src/mame/drivers/ultrsprt.c index 795db13f84e..1c0206d58c9 100644 --- a/src/mame/drivers/ultrsprt.c +++ b/src/mame/drivers/ultrsprt.c @@ -2,6 +2,10 @@ Driver by Ville Linde +TODO: +- sound cpu irqs generation is unknown and very prone to get broken (i.e. if 4G and 2G returns as bad in POST screen). +- sound is lagged, reason is probably the same as above. + */ #include "driver.h" @@ -234,7 +238,7 @@ static void sound_irq_callback(running_machine *machine, int irq) if (irq == 0) /*generic_pulse_irq_line(cputag_get_cpu(machine, "audiocpu"), INPUT_LINE_IRQ5)*/; else - cputag_set_input_line(machine, "maincpu", INPUT_LINE_IRQ6, HOLD_LINE); + cputag_set_input_line(machine, "audiocpu", INPUT_LINE_IRQ6, HOLD_LINE); } static DRIVER_INIT( ultrsprt )