Skip to content

Commit

Permalink
srcclean -nw-
Browse files Browse the repository at this point in the history
  • Loading branch information
SailorSat committed Mar 1, 2025
1 parent 2dcadf0 commit cce906e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/devices/machine/mb89372.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ void mb89372_device::execute_run()
{
m_intr_delay--;
}
else
else
{
//m_intr_delay = 0x04;
check_ints();
Expand Down Expand Up @@ -419,7 +419,7 @@ uint8_t mb89372_device::rx_read()

/*
if (m_rx_offset == m_rx_length)
m_rxsr0 |= 0x40; // EOF
m_rxsr0 |= 0x40; // EOF
*/

if (m_rx_offset >= m_rx_length)
Expand Down Expand Up @@ -536,7 +536,7 @@ void mb89372_device::check_sockets()

/*
if (m_rx_offset + 1 == m_rx_length)
m_rxsr0 |= 0x40; // EOF
m_rxsr0 |= 0x40; // EOF
*/

//m_rxsr1 = 0xc8;
Expand Down
6 changes: 3 additions & 3 deletions src/mame/namco/namco_c139.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,15 +203,15 @@ void namco_c139_device::reg_w(offs_t offset, uint16_t data, uint16_t mem_mask)
}

// mode 09 tx trigger
if (offset == REG_1_MODE && data == 0x09 && m_txsize > 0)
if (offset == REG_1_MODE && data == 0x09 && m_txsize > 0)
m_txblock = 0x00;

// mode 08 & 0c tx trigger
if (offset == REG_2_CONTROL && data == 0x03)
if (offset == REG_2_CONTROL && data == 0x03)
m_txblock = 0x00;

// mode 0d tx trigger
if (offset == REG_5_TXSIZE && data > 0)
if (offset == REG_5_TXSIZE && data > 0)
m_txblock = 0x00;

// hack to get raverace working
Expand Down
3 changes: 2 additions & 1 deletion src/mame/sega/xbdcomm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ uint8_t xbdcomm_device::ex_r(offs_t offset)
if (!machine().side_effects_disabled())
logerror("xbdcomm-ex_r: %02x\n", offset);
return 0xff;
} }
}
}


void xbdcomm_device::ex_w(offs_t offset, uint8_t data)
Expand Down

0 comments on commit cce906e

Please sign in to comment.