summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-10-27 19:22:15 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-10-27 19:22:15 +0100
commitbcc51297e6020aa0cdc0ee107f77ef06b08fbac0 (patch)
tree40d8e1646b398983dd8d86a3a6bb9648ddd5ec13
parent8747487f9b64750103d4b239b52bc8a310a80c59 (diff)
typo/bug fix, thanks to PVS (nw)
-rw-r--r--src/devices/machine/r10696.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/r10696.c b/src/devices/machine/r10696.c
index ab20caed731..819d31084e9 100644
--- a/src/devices/machine/r10696.c
+++ b/src/devices/machine/r10696.c
@@ -154,7 +154,7 @@ READ8_MEMBER( r10696_device::io_r )
io_a = m_iord(0);
io_b = m_iord(1);
io_c = m_iord(2);
- data = (io_a | io_b | io_a) & 0x0f;
+ data = (io_a | io_b | io_c) & 0x0f;
break;
case 0x01: // Read Groups B | C
io_b = m_iord(1);