summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-05-16 18:48:29 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-05-16 18:48:29 -0400
commit9b71ef7496a5b4c7c803df41c54e974909ea71c7 (patch)
treedeffa44e817a99e1e5368384317e91fa1a3cb63a
parent3e74ac7a192d228e5be04c944320ff1ee3a7df4a (diff)
si5500: Fix wrong bit number (nw)
-rw-r--r--src/mame/drivers/si5500.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/si5500.cpp b/src/mame/drivers/si5500.cpp
index e9ed91ab180..1f3e53c4354 100644
--- a/src/mame/drivers/si5500.cpp
+++ b/src/mame/drivers/si5500.cpp
@@ -93,7 +93,7 @@ u8 si5500_state::gpibpsi_input_r(offs_t offset)
case tms9901_device::P6:
return BIT(m_gpib_data, offset-tms9901_device::P0);
case tms9901_device::INT15_P7:
- return BIT(m_gpib_data, 8);
+ return BIT(m_gpib_data, 7);
default:
return 1;
}