summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms1000/tp0320.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms1000/tp0320.cpp')
-rw-r--r--src/devices/cpu/tms1000/tp0320.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/devices/cpu/tms1000/tp0320.cpp b/src/devices/cpu/tms1000/tp0320.cpp
index b27543e9e1b..62ca7072ab2 100644
--- a/src/devices/cpu/tms1000/tp0320.cpp
+++ b/src/devices/cpu/tms1000/tp0320.cpp
@@ -27,10 +27,11 @@ DEFINE_DEVICE_TYPE(TP0320, tp0320_cpu_device, "tp0320", "Texas Instruments TP032
// internal memory maps
-ADDRESS_MAP_START(tp0320_cpu_device::data_192x4)
- AM_RANGE(0x00, 0x7f) AM_RAM
- AM_RANGE(0x80, 0xbf) AM_RAM AM_MIRROR(0x40) // DAM
-ADDRESS_MAP_END
+void tp0320_cpu_device::data_192x4(address_map &map)
+{
+ map(0x00, 0x7f).ram();
+ map(0x80, 0xbf).ram().mirror(0x40); // DAM
+}
// device definitions