Skip to content

Commit d8cbfaa

Browse files
author
Adam
committed
- removed masking as its already in master for some reason..
1 parent 536c9ec commit d8cbfaa

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Diff for: src/devices/machine/ncr5385.cpp

+1-6
Original file line numberDiff line numberDiff line change
@@ -245,9 +245,6 @@ u8 ncr5385_device::aux_status_r()
245245

246246
if (!m_int_status)
247247
{
248-
// mask out any bits
249-
data &= ~(AUX_STATUS_MSG | AUX_STATUS_CD | AUX_STATUS_IO);
250-
251248
// return current phase
252249
u32 const ctrl = scsi_bus->ctrl_r();
253250
if (ctrl & S_MSG)
@@ -838,13 +835,11 @@ void ncr5385_device::update_int()
838835
if (m_int_state != int_state)
839836
{
840837

838+
m_aux_status &= ~(AUX_STATUS_MSG | AUX_STATUS_CD | AUX_STATUS_IO);
841839
if (int_state)
842840
{
843841
m_cmd = 0;
844842

845-
// mask out any bits
846-
m_aux_status &= ~(AUX_STATUS_MSG | AUX_STATUS_CD | AUX_STATUS_IO);
847-
848843
// latch current phase
849844
u32 const ctrl = scsi_bus->ctrl_r();
850845
if (ctrl & S_MSG)

0 commit comments

Comments
 (0)