diff options
author | 2018-04-20 21:16:45 +1000 | |
---|---|---|
committer | 2018-04-20 21:16:45 +1000 | |
commit | 4eb6db52039bfbc7e4994c7a780f5732b1fc663f (patch) | |
tree | 6f7a5d5ec5f8776f38c504c831c36c38f1bcf6db /src/devices/cpu/tms1000/tms1100.cpp | |
parent | d7f5f63ce82d2e2d4e1b0de7842aeb12700becd2 (diff) |
(nw) commit these address map changes while i can
Diffstat (limited to 'src/devices/cpu/tms1000/tms1100.cpp')
-rw-r--r-- | src/devices/cpu/tms1000/tms1100.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/devices/cpu/tms1000/tms1100.cpp b/src/devices/cpu/tms1000/tms1100.cpp index 2f417b2658d..9f7d6a040b8 100644 --- a/src/devices/cpu/tms1000/tms1100.cpp +++ b/src/devices/cpu/tms1000/tms1100.cpp @@ -22,13 +22,15 @@ DEFINE_DEVICE_TYPE(TMS1370, tms1370_cpu_device, "tms1370", "Texas Instruments TM // internal memory maps -ADDRESS_MAP_START(tms1100_cpu_device::program_11bit_8) - AM_RANGE(0x000, 0x7ff) AM_ROM -ADDRESS_MAP_END +void tms1100_cpu_device::program_11bit_8(address_map &map) +{ + map(0x000, 0x7ff).rom(); +} -ADDRESS_MAP_START(tms1100_cpu_device::data_128x4) - AM_RANGE(0x00, 0x7f) AM_RAM -ADDRESS_MAP_END +void tms1100_cpu_device::data_128x4(address_map &map) +{ + map(0x00, 0x7f).ram(); +} // device definitions |