diff options
author | 2019-11-12 17:54:29 -0500 | |
---|---|---|
committer | 2019-11-12 17:55:49 -0500 | |
commit | 2d93bc91d4d197b5597f4fc83eded20debf9fb09 (patch) | |
tree | fbdff96d226d77dfaf2abf0b1c66322f7dac7561 /src/mame/drivers/mpc3000.cpp | |
parent | 13beade76785f999b81528dc4bcb642ba1c76e45 (diff) |
v5x: Emulate internal/external timer clock input selection; internalize CPU clock divider for V40/V50
Diffstat (limited to 'src/mame/drivers/mpc3000.cpp')
-rw-r--r-- | src/mame/drivers/mpc3000.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mame/drivers/mpc3000.cpp b/src/mame/drivers/mpc3000.cpp index 8c30b8427fd..7209f45f14a 100644 --- a/src/mame/drivers/mpc3000.cpp +++ b/src/mame/drivers/mpc3000.cpp @@ -193,6 +193,7 @@ void mpc3000_state::mpc3000(machine_config &config) m_maincpu->out_mem16w_cb().set(FUNC(mpc3000_state::dma_memw_cb)); m_maincpu->in_io16r_cb<3>().set(m_dsp, FUNC(l7a1045_sound_device::dma_r16_cb)); m_maincpu->out_io16w_cb<3>().set(m_dsp, FUNC(l7a1045_sound_device::dma_w16_cb)); + m_maincpu->set_tclk(4'000'000); // FIXME: DAWCK generated by DSP (also tied to V53 DSR input) hc259_device &loledlatch(HC259(config, "loledlatch")); loledlatch.q_out_cb<0>().set_output("led0").invert(); // Edit Loop |