summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2016-06-21 20:00:26 +0200
committer Olivier Galibert <galibert@pobox.com>2016-06-21 20:00:39 +0200
commitcde8e14fb6d7d7cfbbd50e5dde63cc9d522a239f (patch)
tree570ac9cb1a6642aa8fd8c8164312d73e6f410871
parent46757f3eb9fddec62550fee99e27725844446144 (diff)
tms57002: I hadn't yet understood some of the, err, subtleties of the memory subsystem [O. Galibert]
-rw-r--r--src/devices/cpu/tms57002/tms57002.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/tms57002/tms57002.cpp b/src/devices/cpu/tms57002/tms57002.cpp
index 93f8a3e7924..2424642e8d4 100644
--- a/src/devices/cpu/tms57002/tms57002.cpp
+++ b/src/devices/cpu/tms57002/tms57002.cpp
@@ -17,7 +17,7 @@ const device_type TMS57002 = &device_creator<tms57002_device>;
// Can't use a DEVICE_ADDRESS_MAP, not yet anyway
static ADDRESS_MAP_START(internal_pgm, AS_PROGRAM, 32, tms57002_device)
- AM_RANGE(0x000, 0x3ff) AM_RAM
+ AM_RANGE(0x00, 0xff) AM_RAM
ADDRESS_MAP_END
tms57002_device::tms57002_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)