Skip to content

Commit ad8a862

Browse files
author
Adam
committed
- dont wait for 250 timeout (@shattered fix); hugely increases HD performance
1 parent d8cbfaa commit ad8a862

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/devices/machine/ncr5385.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,11 @@ void ncr5385_device::scsi_ctrl_changed()
178178
m_state_timer->adjust(attotime::zero);
179179
}
180180
else if (ctrl & S_BSY)
181+
{
181182
LOGMASKED(LOG_STATE, "scsi_ctrl_changed 0x%03x arbitration/selection\n", ctrl);
183+
if (m_state != IDLE)
184+
m_state_timer->adjust(attotime::from_usec(40));
185+
}
182186
else
183187
{
184188
LOGMASKED(LOG_STATE, "scsi_ctrl_changed 0x%03x BUS FREE\n", ctrl);

0 commit comments

Comments
 (0)