summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2012-10-07 00:55:36 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2012-10-07 00:55:36 +0000
commite65c80e3371da1587a3bd6f5bec04086c81e49e0 (patch)
tree3155ebaab99d6b1b806ad535ef13e4d5a38deec5 /src
parent15f12d2fc2af00ab89f66c23cb7387e3a6030087 (diff)
[MESS] A2600 (btime) works again (nw)
Diffstat (limited to 'src')
-rw-r--r--src/mess/drivers/a2600.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mess/drivers/a2600.c b/src/mess/drivers/a2600.c
index fbe9ae40f3b..f9368afc24c 100644
--- a/src/mess/drivers/a2600.c
+++ b/src/mess/drivers/a2600.c
@@ -2015,7 +2015,8 @@ void a2600_state::machine_reset()
space.install_read_handler(0x1fe0, 0x1fe7, read8_delegate(FUNC(a2600_state::modeE7_switch_r),this));
space.install_write_handler(0x1fe8, 0x1feb, write8_delegate(FUNC(a2600_state::modeE7_RAM_switch_w),this));
space.install_read_handler(0x1fe8, 0x1feb, read8_delegate(FUNC(a2600_state::modeE7_RAM_switch_r),this));
- space.install_readwrite_bank(0x1800, 0x18ff, "bank9");
+ space.install_write_bank(0x1800, 0x18ff, "bank9");
+ space.install_read_bank(0x1900, 0x19ff, "bank9");
membank("bank9")->set_base(m_extra_RAM->base() + 4 * 256 );
break;