x68k: slow down dma channel 2

This commit is contained in:
cracyc 2021-06-30 20:47:36 -05:00
parent e5d4d10d5f
commit dbc5dd77df

View File

@ -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));