summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-04-15 15:42:52 -0400
committer AJR <ajrhacker@users.noreply.github.com>2017-04-15 15:43:04 -0400
commit445858d6837a4607eb4fa62f1bffeea75d8dc577 (patch)
tree9f4369707ba53586a0692af574819eef0205853a /src/emu
parent52b0ef3911627099d7f74e948b84b0fb9bf4e954 (diff)
i8251: Improve logging; restrict external command_w and mode_w access to V53 variant (nw)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/diserial.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/diserial.cpp b/src/emu/diserial.cpp
index 9fae3f494f8..76209dfb35a 100644
--- a/src/emu/diserial.cpp
+++ b/src/emu/diserial.cpp
@@ -441,6 +441,7 @@ u8 device_serial_interface::transmit_register_get_data_bit()
bit = (m_tra_register_data>>(m_tra_bit_count-1-m_tra_bit_count_transmitted))&1;
m_tra_bit_count_transmitted++;
+ //device().logerror("%d bits transmitted\n", m_tra_bit_count_transmitted);
/* have all bits of this stream formatted byte been sent? */
if (m_tra_bit_count_transmitted==m_tra_bit_count)