summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-12-13 15:44:22 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-12-13 15:44:43 -0500
commitd62c28b872ac14baede336dc5c626aed688a97a5 (patch)
treed20499b3fbdb35753c7e561a79b5f5369060cfbf
parentf58c3ea2644c51559a45d09fa1c3a146410bcf5a (diff)
zpinball.cpp: Hook up CTC interrupt (nw)
-rw-r--r--src/mame/drivers/zpinball.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mame/drivers/zpinball.cpp b/src/mame/drivers/zpinball.cpp
index 92c5aff8c4c..a971a720b56 100644
--- a/src/mame/drivers/zpinball.cpp
+++ b/src/mame/drivers/zpinball.cpp
@@ -258,6 +258,7 @@ void zpinball_state::zpinball(machine_config &config)
m_zpuctc->set_clk<0>(8_MHz_XTAL / 4);
m_zpuctc->set_clk<2>(100); // rectified from power supply
m_zpuctc->set_clk<3>(100);
+ m_zpuctc->int_callback().set_inputline(m_zpumpu, INPUT_LINE_IRQ0);
m_zpuctc->zc_callback<0>().set(FUNC(zpinball_state::shift_toggle_w));
m_zpuctc->zc_callback<0>().append(m_zpuctc, FUNC(z80ctc_device::trg1));
m_zpuctc->zc_callback<1>().set(FUNC(zpinball_state::clock_off_w));