summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2021-01-04 22:52:00 -0500
committer arbee <rb6502@users.noreply.github.com>2021-01-04 22:52:00 -0500
commit403f7a099af070e5a5eca1c7742d01933c94a774 (patch)
tree86274fa5ca9b9e79a3f00729609388f8f69c8a5d
parent7ef7dec9e667c2950e87fe3783b80b610c414712 (diff)
apple2c: fix RdRAM2 ($C011) return value on IIc and IIc Plus. (Github issue #7640). [R. Belmont]
-rw-r--r--src/mame/drivers/apple2e.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/apple2e.cpp b/src/mame/drivers/apple2e.cpp
index de4fef315f9..c41e02dd501 100644
--- a/src/mame/drivers/apple2e.cpp
+++ b/src/mame/drivers/apple2e.cpp
@@ -2143,7 +2143,7 @@ u8 apple2e_state::c000_iic_r(offs_t offset)
}
case 0x11: // read LCRAM2 (LC Dxxx bank), also reads like $C010 without strobe reset
- return (m_lcram2 ? 0x80 : 0x00) | m_strobe | m_transchar;
+ return (m_lcram2 ? 0x80 : 0x00) | m_transchar;
case 0x12: // read LCRAM (is LC readable?)
return (m_lcram ? 0x80 : 0x00) | m_transchar;