summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/nemesis.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/nemesis.c')
-rw-r--r--src/mame/drivers/nemesis.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/mame/drivers/nemesis.c b/src/mame/drivers/nemesis.c
index ba115d139a4..a01bc9c6779 100644
--- a/src/mame/drivers/nemesis.c
+++ b/src/mame/drivers/nemesis.c
@@ -1425,12 +1425,6 @@ GFXDECODE_END
/******************************************************************************/
-WRITE_LINE_MEMBER(nemesis_state::sound_irq)
-{
-/* Interrupts _are_ generated, I wonder where they go.. */
-// m_audiocpu->set_input_line(0, HOLD_LINE);
-}
-
WRITE8_MEMBER(nemesis_state::volume_callback)
{
m_k007232->set_volume(0, (data >> 4) * 0x11, 0);
@@ -1821,7 +1815,7 @@ static MACHINE_CONFIG_START( citybomb, nemesis_state )
MCFG_SOUND_ROUTE(1, "rspeaker", 0.30)
MCFG_SOUND_ADD("ymsnd", YM3812, 3579545)
- MCFG_YM3812_IRQ_HANDLER(WRITELINE(nemesis_state, sound_irq))
+// MCFG_YM3812_IRQ_HANDLER(INPUTLINE("audiocpu", 0)) ... Interrupts _are_ generated, I wonder where they go
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 1.0)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 1.0)
@@ -1868,7 +1862,7 @@ static MACHINE_CONFIG_START( nyanpani, nemesis_state )
MCFG_SOUND_ROUTE(1, "rspeaker", 0.30)
MCFG_SOUND_ADD("ymsnd", YM3812, 3579545)
- MCFG_YM3812_IRQ_HANDLER(WRITELINE(nemesis_state, sound_irq))
+// MCFG_YM3812_IRQ_HANDLER(INPUTLINE("audiocpu", 0)) ... Interrupts _are_ generated, I wonder where they go
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 1.0)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 1.0)