mirror of
https://github.com/holub/mame
synced 2025-10-07 09:25:34 +03:00
dcs: DSIO and DENVER don't use SDRC dma. Fixes boot hang on roadburn. (nw)
This commit is contained in:
parent
9dd121c8ee
commit
229c441d35
@ -1515,7 +1515,8 @@ TIMER_CALLBACK_MEMBER( dcs_audio_device::dcs_delayed_data_w_callback )
|
|||||||
void dcs_audio_device::data_w(uint16_t data)
|
void dcs_audio_device::data_w(uint16_t data)
|
||||||
{
|
{
|
||||||
/* preprocess the write */
|
/* preprocess the write */
|
||||||
if (preprocess_write(data))
|
// ADSP2181 variants use IDMA to transfer data
|
||||||
|
if (m_rev <= REV_DCS2 && preprocess_write(data))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* if we are DCS1, set a timer to latch the data */
|
/* if we are DCS1, set a timer to latch the data */
|
||||||
|
Loading…
Reference in New Issue
Block a user