summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/thedealr.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-03-29 09:54:27 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-03-29 09:56:40 -0400
commitd320e9e15620c54838f8b4e5c901a8748b13407d (patch)
treef41ce280463ff047574ad17aacd95cb7f886fa41 /src/mame/drivers/thedealr.cpp
parentc9cf7f3b6c9ebd97f0c3125831546e6df7126493 (diff)
unkhorse: Lower frequency of 8155 timer driving speaker
MCFG_CPU_VBLANK_INT replacement: some simple edge-triggered cases (nw)
Diffstat (limited to 'src/mame/drivers/thedealr.cpp')
-rw-r--r--src/mame/drivers/thedealr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/thedealr.cpp b/src/mame/drivers/thedealr.cpp
index 28e34a5f84e..813d34fd151 100644
--- a/src/mame/drivers/thedealr.cpp
+++ b/src/mame/drivers/thedealr.cpp
@@ -538,7 +538,6 @@ MACHINE_CONFIG_START(thedealr_state::thedealr)
MCFG_CPU_ADD("subcpu", R65C02, XTAL(16'000'000)/8) // 2 MHz?
MCFG_CPU_PROGRAM_MAP(thedealr_sub)
- MCFG_CPU_VBLANK_INT_DRIVER("screen", thedealr_state, nmi_line_pulse)
MCFG_NVRAM_ADD_0FILL("nvram")
@@ -558,6 +557,7 @@ MACHINE_CONFIG_START(thedealr_state::thedealr)
MCFG_SCREEN_VISIBLE_AREA(0, 384-1, 0+30, 256-1)
MCFG_SCREEN_UPDATE_DRIVER(thedealr_state, screen_update)
MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(thedealr_state, screen_vblank))
+ MCFG_DEVCB_CHAIN_OUTPUT(INPUTLINE("subcpu", INPUT_LINE_NMI))
MCFG_SCREEN_PALETTE("palette")
MCFG_GFXDECODE_ADD("gfxdecode", "palette", thedealr)