mirror of
https://github.com/holub/mame
synced 2025-06-09 22:33:00 +03:00
02730: fiveside: Doesn't past rom check
This commit is contained in:
parent
cde1cfd9fc
commit
d6ffaaa829
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
Driver by Ville Linde
|
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"
|
#include "driver.h"
|
||||||
@ -234,7 +238,7 @@ static void sound_irq_callback(running_machine *machine, int irq)
|
|||||||
if (irq == 0)
|
if (irq == 0)
|
||||||
/*generic_pulse_irq_line(cputag_get_cpu(machine, "audiocpu"), INPUT_LINE_IRQ5)*/;
|
/*generic_pulse_irq_line(cputag_get_cpu(machine, "audiocpu"), INPUT_LINE_IRQ5)*/;
|
||||||
else
|
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 )
|
static DRIVER_INIT( ultrsprt )
|
||||||
|
Loading…
Reference in New Issue
Block a user