Skip to content

Commit

Permalink
- dont wait for 250 timeout (@shattered fix); hugely increases HD per…
Browse files Browse the repository at this point in the history
…formance
  • Loading branch information
Adam committed Dec 29, 2024
1 parent 4239f81 commit 74ed34d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/devices/machine/ncr5385.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,11 @@ void ncr5385_device::scsi_ctrl_changed()
m_state_timer->adjust(attotime::zero);
}
else if (ctrl & S_BSY)
{
LOGMASKED(LOG_STATE, "scsi_ctrl_changed 0x%03x arbitration/selection\n", ctrl);
if (m_state != IDLE)
m_state_timer->adjust(attotime::from_usec(40));
}
else
{
LOGMASKED(LOG_STATE, "scsi_ctrl_changed 0x%03x BUS FREE\n", ctrl);
Expand Down

0 comments on commit 74ed34d

Please sign in to comment.