summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-02-01 21:27:17 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-02-01 21:27:17 -0500
commit4e8a3d56d5296696356c9135d28c16c557f3c2d3 (patch)
tree93704d29598e896ec0d3d24b7f482cc7656a2a20
parentfe500377ad3ef1566b4fd7db2700f46223a88407 (diff)
toratora: Fix address map (nw)
-rw-r--r--src/mame/drivers/toratora.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/toratora.cpp b/src/mame/drivers/toratora.cpp
index 9a8bb056332..172ccde4233 100644
--- a/src/mame/drivers/toratora.cpp
+++ b/src/mame/drivers/toratora.cpp
@@ -323,7 +323,7 @@ static ADDRESS_MAP_START( main_map, AS_PROGRAM, 8, toratora_state )
AM_RANGE(0xf048, 0xf049) AM_NOP
AM_RANGE(0xf04a, 0xf04a) AM_WRITE(clear_tv_w) /* the read is mark *LEDEN, but not used */
AM_RANGE(0xf04b, 0xf04b) AM_READWRITE(timer_r, clear_timer_w)
- AM_RANGE(0xa04c, 0xf09f) AM_NOP
+ AM_RANGE(0xf04c, 0xf09f) AM_NOP
AM_RANGE(0xf0a0, 0xf0a3) AM_DEVREADWRITE("pia_u1", pia6821_device, read, write)
AM_RANGE(0xf0a4, 0xf0a7) AM_DEVREADWRITE("pia_u2", pia6821_device, read, write)
AM_RANGE(0xf0a8, 0xf0ab) AM_DEVREADWRITE("pia_u3", pia6821_device, read, write)