summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2016-07-02 15:36:47 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2016-07-02 15:36:47 +1000
commit11751e2d3cba749bf25465fd4f0430babf436939 (patch)
tree2b763100ca3a7ba7eda2f4582452a2a0b32ded19
parent4f93aeccafa3bff944ce373b6ba00885b4d1abeb (diff)
LX810, AP2000: Fixed memory problem. Still has an eeprom issue.
-rw-r--r--src/devices/bus/centronics/epson_lx810l.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/centronics/epson_lx810l.cpp b/src/devices/bus/centronics/epson_lx810l.cpp
index 7185a43ea7e..2101fb5318f 100644
--- a/src/devices/bus/centronics/epson_lx810l.cpp
+++ b/src/devices/bus/centronics/epson_lx810l.cpp
@@ -95,7 +95,7 @@ static ADDRESS_MAP_START( lx810l_mem, AS_PROGRAM, 8, epson_lx810l_t )
AM_RANGE(0x0000, 0x7fff) AM_ROM /* 32k firmware */
AM_RANGE(0x8000, 0x9fff) AM_RAM /* 8k external RAM */
AM_RANGE(0xa000, 0xbfff) AM_READWRITE(fakemem_r, fakemem_w) /* fake memory, write one, set all */
- AM_RANGE(0xc000, 0xdfff) AM_MIRROR(0x1ff0) AM_DEVREADWRITE("e05a30", e05a30_device, read, write)
+ AM_RANGE(0xc000, 0xc00f) AM_MIRROR(0x1ff0) AM_DEVREADWRITE("e05a30", e05a30_device, read, write)
AM_RANGE(0xe000, 0xfeff) AM_NOP /* not used */
AM_RANGE(0xff00, 0xffff) AM_RAM /* internal CPU RAM */
ADDRESS_MAP_END