summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2017-06-19 13:43:14 +0200
committer GitHub <noreply@github.com>2017-06-19 13:43:14 +0200
commita8a79f3c0fe9fe765e24efe040bf72d22383735c (patch)
tree26739b94f27e7eb56361bbea4d478ef915b88aad
parent2b7a5da4e66ddfa71e13392687d1512a5693febf (diff)
nbmj9195.cpp: fixed MT06617 (nw)
-rw-r--r--src/mame/drivers/nbmj9195.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/nbmj9195.cpp b/src/mame/drivers/nbmj9195.cpp
index 6878e59bedc..f71ca4c4c80 100644
--- a/src/mame/drivers/nbmj9195.cpp
+++ b/src/mame/drivers/nbmj9195.cpp
@@ -602,7 +602,7 @@ static ADDRESS_MAP_START( imekura_io_map, AS_IO, 8, nbmj9195_state )
AM_RANGE(0xc0, 0xc1) AM_MIRROR(0xff00) AM_READ(blitter_0_r)
AM_RANGE(0xc0, 0xcf) AM_MIRROR(0xff00) AM_WRITE(blitter_0_w)
- AM_RANGE(0xd0, 0xdf) AM_WRITE(clut_0_w)
+ AM_RANGE(0xd0, 0xdf) AM_MIRROR(0xff00) AM_WRITE(clut_0_w)
AM_RANGE(0xe0, 0xe1) AM_MIRROR(0xff00) AM_READ(blitter_1_r)
AM_RANGE(0xe0, 0xef) AM_MIRROR(0xff00) AM_WRITE(blitter_1_w)