Skip to content

Commit

Permalink
- removed masking as its already in master for some reason..
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam committed Dec 29, 2024
1 parent 49fe4b4 commit 4239f81
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/devices/machine/ncr5385.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,6 @@ u8 ncr5385_device::aux_status_r()

if (!m_int_status)
{
// mask out any bits
data &= ~(AUX_STATUS_MSG | AUX_STATUS_CD | AUX_STATUS_IO);

// return current phase
u32 const ctrl = scsi_bus->ctrl_r();
if (ctrl & S_MSG)
Expand Down Expand Up @@ -838,13 +835,11 @@ void ncr5385_device::update_int()
if (m_int_state != int_state)
{

m_aux_status &= ~(AUX_STATUS_MSG | AUX_STATUS_CD | AUX_STATUS_IO);
if (int_state)
{
m_cmd = 0;

// mask out any bits
m_aux_status &= ~(AUX_STATUS_MSG | AUX_STATUS_CD | AUX_STATUS_IO);

// latch current phase
u32 const ctrl = scsi_bus->ctrl_r();
if (ctrl & S_MSG)
Expand Down

0 comments on commit 4239f81

Please sign in to comment.