We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 536c9ec commit d8cbfaaCopy full SHA for d8cbfaa
src/devices/machine/ncr5385.cpp
@@ -245,9 +245,6 @@ u8 ncr5385_device::aux_status_r()
245
246
if (!m_int_status)
247
{
248
- // mask out any bits
249
- data &= ~(AUX_STATUS_MSG | AUX_STATUS_CD | AUX_STATUS_IO);
250
-
251
// return current phase
252
u32 const ctrl = scsi_bus->ctrl_r();
253
if (ctrl & S_MSG)
@@ -838,13 +835,11 @@ void ncr5385_device::update_int()
838
835
if (m_int_state != int_state)
839
836
840
837
+ m_aux_status &= ~(AUX_STATUS_MSG | AUX_STATUS_CD | AUX_STATUS_IO);
841
if (int_state)
842
843
m_cmd = 0;
844
845
846
- m_aux_status &= ~(AUX_STATUS_MSG | AUX_STATUS_CD | AUX_STATUS_IO);
847
848
// latch current phase
849
850
0 commit comments