summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2009-06-02 22:37:10 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2009-06-02 22:37:10 +0000
commitd6ffaaa8290963e1fb1cda2f36cd55740fc198f0 (patch)
treee0ec49ae71675dbb438a7aba5062e81e7e8f2897
parentcde1cfd9fc3fb50c38e53976f3ea61bc4466719d (diff)
02730: fiveside: Doesn't past rom check
-rw-r--r--src/mame/drivers/ultrsprt.c6
1 files changed, 5 insertions, 1 deletions
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 )