trunk/src/mess/drivers/a2600.c
r18318 | r18319 | |
2015 | 2015 | space.install_read_handler(0x1fe0, 0x1fe7, read8_delegate(FUNC(a2600_state::modeE7_switch_r),this)); |
2016 | 2016 | space.install_write_handler(0x1fe8, 0x1feb, write8_delegate(FUNC(a2600_state::modeE7_RAM_switch_w),this)); |
2017 | 2017 | space.install_read_handler(0x1fe8, 0x1feb, read8_delegate(FUNC(a2600_state::modeE7_RAM_switch_r),this)); |
2018 | | space.install_readwrite_bank(0x1800, 0x18ff, "bank9"); |
| 2018 | space.install_write_bank(0x1800, 0x18ff, "bank9"); |
| 2019 | space.install_read_bank(0x1900, 0x19ff, "bank9"); |
2019 | 2020 | membank("bank9")->set_base(m_extra_RAM->base() + 4 * 256 ); |
2020 | 2021 | break; |
2021 | 2022 | |