mc68901: Automatic turnaround is only done once (nw)

This commit is contained in:
AJR 2020-01-25 22:40:04 -05:00
parent ce517accc9
commit cbdd4fb474

View File

@ -1436,7 +1436,10 @@ void mc68901_device::tx_clock()
// automatic turnaround enables the receiver
if (m_tsr & TSR_AUTO_TURNAROUND)
{
m_rsr |= RSR_RCV_ENABLE;
m_tsr &= ~TSR_AUTO_TURNAROUND;
}
}
else if ((m_tsr & TSR_BUFFER_EMPTY) && !(m_tsr & TSR_UNDERRUN_ERROR) && !send_break)
{