summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tlcs90/tlcs90.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tlcs90/tlcs90.cpp')
-rw-r--r--src/devices/cpu/tlcs90/tlcs90.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tlcs90/tlcs90.cpp b/src/devices/cpu/tlcs90/tlcs90.cpp
index 3bacad6c144..81c28407bd7 100644
--- a/src/devices/cpu/tlcs90/tlcs90.cpp
+++ b/src/devices/cpu/tlcs90/tlcs90.cpp
@@ -50,7 +50,7 @@ void tlcs90_device::tmp90840_mem(address_map &map)
void tlcs90_device::tmp90841_mem(address_map &map)
{
-// AM_RANGE( 0x0000, 0x1fff ) AM_ROM // rom-less
+// map(0x0000, 0x1fff).rom(); // rom-less
map(0xfec0, 0xffbf).ram(); // 256b RAM (internal)
map(T90_IOBASE, T90_IOBASE+47).rw(FUNC(tlcs90_device::t90_internal_registers_r), FUNC(tlcs90_device::t90_internal_registers_w));
}
@@ -64,7 +64,7 @@ void tlcs90_device::tmp91640_mem(address_map &map)
void tlcs90_device::tmp91641_mem(address_map &map)
{
-// AM_RANGE( 0x0000, 0x3fff ) AM_ROM // rom-less
+// map(0x0000, 0x3fff).rom(); // rom-less
map(0xfdc0, 0xffbf).ram(); // 512b RAM (internal)
map(T90_IOBASE, T90_IOBASE+47).rw(FUNC(tlcs90_device::t90_internal_registers_r), FUNC(tlcs90_device::t90_internal_registers_w));
}