summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms32031/tms32031.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms32031/tms32031.cpp')
-rw-r--r--src/devices/cpu/tms32031/tms32031.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/devices/cpu/tms32031/tms32031.cpp b/src/devices/cpu/tms32031/tms32031.cpp
index c8d1d0b363e..3ccfff7ec69 100644
--- a/src/devices/cpu/tms32031/tms32031.cpp
+++ b/src/devices/cpu/tms32031/tms32031.cpp
@@ -93,13 +93,15 @@ DEFINE_DEVICE_TYPE(TMS32032, tms32032_device, "tms32032", "Texas Instruments TMS
// internal memory maps
-ADDRESS_MAP_START(tms32031_device::internal_32031)
- AM_RANGE(0x809800, 0x809fff) AM_RAM
-ADDRESS_MAP_END
+void tms32031_device::internal_32031(address_map &map)
+{
+ map(0x809800, 0x809fff).ram();
+}
-ADDRESS_MAP_START(tms32032_device::internal_32032)
- AM_RANGE(0x87fe00, 0x87ffff) AM_RAM
-ADDRESS_MAP_END
+void tms32032_device::internal_32032(address_map &map)
+{
+ map(0x87fe00, 0x87ffff).ram();
+}
// ROM definitions for the internal boot loader programs