summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-03-16 17:31:15 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-03-16 17:31:15 -0400
commit63b7f5f960f6bd68bdcdd8c1b2d1e5482eaa9cfc (patch)
treeb8fe2d1661d5bdb21b0890025b808da82281104a
parentf6961a491e5a6a21e29f8c09533c08d83019ab60 (diff)
liberatr2: Regression fix (nw)
-rw-r--r--src/mame/drivers/liberatr.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/liberatr.cpp b/src/mame/drivers/liberatr.cpp
index bbe6a17038e..90c4b9f77d1 100644
--- a/src/mame/drivers/liberatr.cpp
+++ b/src/mame/drivers/liberatr.cpp
@@ -324,7 +324,8 @@ void liberatr_state::liberat2_map(address_map &map)
map(0x0002, 0x0002).rw(this, FUNC(liberatr_state::bitmap_xy_r), FUNC(liberatr_state::bitmap_xy_w));
map(0x4000, 0x4000).r(this, FUNC(liberatr_state::port0_r));
map(0x4001, 0x4001).portr("IN1");
- map(0x4000, 0x400f).nopr().writeonly().share("base_ram");
+ map(0x4002, 0x400f).nopr();
+ map(0x4000, 0x400f).writeonly().share("base_ram");
map(0x4200, 0x421f).nopr().writeonly().share("colorram");
map(0x4400, 0x4400).nopw();
map(0x4600, 0x4600).w(this, FUNC(liberatr_state::earom_control_w));