void i8251_device::update_rx_ready() { int state = m_status & I8251_STATUS_RX_READY; // masked? if (!BIT(m_command, 2)) state = 0; m_rxrdy_handler(state != 0); }
void i8251_device::update_rx_ready() { int state; state = m_status & I8251_STATUS_RX_READY; /* masked? */ if ((m_command & (1<<2))==0) { state = 0; } m_rxrdy_handler(state != 0); }