summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-02-24 15:57:25 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-02-24 15:57:25 +0000
commit4a7301495bb8a25458572346ad75a35d5aa2e9a3 (patch)
tree54fb8e3ea24efbd9c49e6869713b43fa2c7b2ee6 /src
parent803ece9d969ad6668a0b1aeb58b30500a1b7c4d9 (diff)
Different fix for X the Ball sound. Pulse no longer works for the 34010. Undid previous fix.
Diffstat (limited to 'src')
-rw-r--r--src/emu/cpu/tms34010/tms34010.c2
-rw-r--r--src/mame/drivers/xtheball.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/emu/cpu/tms34010/tms34010.c b/src/emu/cpu/tms34010/tms34010.c
index cfc88369917..990639561bb 100644
--- a/src/emu/cpu/tms34010/tms34010.c
+++ b/src/emu/cpu/tms34010/tms34010.c
@@ -783,8 +783,6 @@ static void set_irq_line(int irqline, int linestate)
IOREG(REG_INTPEND) &= ~TMS34010_INT2;
break;
}
-
- check_interrupt();
}
diff --git a/src/mame/drivers/xtheball.c b/src/mame/drivers/xtheball.c
index a609ab693b0..78f215449da 100644
--- a/src/mame/drivers/xtheball.c
+++ b/src/mame/drivers/xtheball.c
@@ -359,7 +359,7 @@ static MACHINE_DRIVER_START( xtheball )
MDRV_CPU_ADD(TMS34010, 40000000)
MDRV_CPU_CONFIG(tms_config)
MDRV_CPU_PROGRAM_MAP(main_map,0)
- MDRV_CPU_PERIODIC_INT(irq1_line_pulse,15000)
+ MDRV_CPU_PERIODIC_INT(irq1_line_hold,15000)
MDRV_MACHINE_RESET(xtheball)
MDRV_NVRAM_HANDLER(generic_1fill)