summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/thayers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/thayers.cpp')
-rw-r--r--src/mame/drivers/thayers.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/thayers.cpp b/src/mame/drivers/thayers.cpp
index afee324b8c6..ffc4e397e59 100644
--- a/src/mame/drivers/thayers.cpp
+++ b/src/mame/drivers/thayers.cpp
@@ -4,7 +4,7 @@
TODO:
- - keyboard
+ - keyboard
- LDV1000 mode
- PR7820 INT/_EXT line
- coin counter
@@ -334,9 +334,9 @@ WRITE_LINE_MEMBER(thayers_state::kbclk_w)
}
if (LOG) logerror("rx bit %u\n",m_rx_bit);
-
+
if (BIT(m_rx_bit, 3)) {
- // 1, 0, 1, Q9, P3, P2, P1, P0, 1, 1
+ // 1, 0, 1, Q9, P3, P2, P1, P0, 1, 1
bool q9 = (m_keylatch == 9);
m_keydata = 0xa0 | q9 << 4 | m_row[m_keylatch]->read();
if (LOG) logerror("keydata %02x keylatch %u\n",m_keydata,m_keylatch);