diff options
author | 2015-08-26 08:10:34 +0200 | |
---|---|---|
committer | 2015-08-26 08:10:34 +0200 | |
commit | efa3a679a331ea91002a0bc72e49a230ff2a2f67 (patch) | |
tree | 9de472bbb6862733d1982607326783d65be9c414 /src/emu/machine/i8251.c | |
parent | bc5ffe493777e55f081d3ba29b8b298da90ae776 (diff) |
Cleanups and version bumpmame0165
Diffstat (limited to 'src/emu/machine/i8251.c')
-rw-r--r-- | src/emu/machine/i8251.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/emu/machine/i8251.c b/src/emu/machine/i8251.c index e37da9fcb6b..7008fe394a3 100644 --- a/src/emu/machine/i8251.c +++ b/src/emu/machine/i8251.c @@ -692,7 +692,7 @@ WRITE8_MEMBER(i8251_device::data_w) { m_tx_data = data; - LOG(("data_w %02x\n" , data)); + LOG(("data_w %02x\n" , data)); // printf("i8251 transmit char: %02x\n",data); /* writing clears */ @@ -714,7 +714,6 @@ WRITE8_MEMBER(i8251_device::data_w) void i8251_device::receive_character(UINT8 ch) { - m_rx_data = ch; /* char has not been read and another has arrived! */ @@ -735,7 +734,7 @@ void i8251_device::receive_character(UINT8 ch) READ8_MEMBER(i8251_device::data_r) { - LOG(("read data: %02x, STATUS=%02x\n",m_rx_data,m_status)); + LOG(("read data: %02x, STATUS=%02x\n",m_rx_data,m_status)); /* reading clears */ m_status &= ~I8251_STATUS_RX_READY; |