From dbc5dd77df7e69761625599392ddeb3917cae34d Mon Sep 17 00:00:00 2001 From: cracyc Date: Wed, 30 Jun 2021 20:47:36 -0500 Subject: [PATCH] x68k: slow down dma channel 2 --- src/mame/drivers/x68k.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/x68k.cpp b/src/mame/drivers/x68k.cpp index a564e960fc8..c2cb97c606f 100644 --- a/src/mame/drivers/x68k.cpp +++ b/src/mame/drivers/x68k.cpp @@ -1651,7 +1651,7 @@ void x68k_state::x68000_base(machine_config &config) HD63450(config, m_hd63450, 40_MHz_XTAL / 4, "maincpu"); m_hd63450->set_clocks(attotime::from_usec(2), attotime::from_nsec(450), attotime::from_usec(4), attotime::from_hz(15625/2)); - m_hd63450->set_burst_clocks(attotime::from_usec(2), attotime::from_nsec(450), attotime::from_nsec(50), attotime::from_nsec(50)); + m_hd63450->set_burst_clocks(attotime::from_usec(2), attotime::from_nsec(450), attotime::from_nsec(450), attotime::from_nsec(50)); m_hd63450->irq_callback().set(FUNC(x68k_state::dma_irq)); m_hd63450->dma_end().set(FUNC(x68k_state::dma_end)); m_hd63450->dma_read<0>().set("upd72065", FUNC(upd72065_device::dma_r));