summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2010-10-19 20:33:08 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2010-10-19 20:33:08 +0000
commitb4f208ad92e37dc3fbc28e6e60e75aca77680c56 (patch)
tree00e53f86db6043ecf94151fc3d03f50c2333e7d7
parentfb0c3fb1d9592b65e2f14a7868c052e7558b4040 (diff)
Removed deprecat.h usage from 1943 driver [Angelo Salese]
-rw-r--r--src/mame/drivers/1943.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/1943.c b/src/mame/drivers/1943.c
index c1cc233a784..da0ef4d2e4d 100644
--- a/src/mame/drivers/1943.c
+++ b/src/mame/drivers/1943.c
@@ -29,7 +29,6 @@
*/
#include "emu.h"
-#include "deprecat.h"
#include "cpu/z80/z80.h"
#include "sound/2203intf.h"
#include "includes/1943.h"
@@ -266,7 +265,7 @@ static MACHINE_CONFIG_START( 1943, _1943_state )
MDRV_CPU_ADD("audiocpu", Z80, XTAL_24MHz/8) /* verified on pcb */
MDRV_CPU_PROGRAM_MAP(sound_map)
- MDRV_CPU_VBLANK_INT_HACK(irq0_line_hold, 4)
+ MDRV_CPU_PERIODIC_INT(irq0_line_hold, 4*60)
MDRV_MACHINE_RESET(1943)