summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/a2themill.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/a2themill.cpp')
-rw-r--r--src/devices/bus/a2bus/a2themill.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/bus/a2bus/a2themill.cpp b/src/devices/bus/a2bus/a2themill.cpp
index 41f2478b648..c55abe6975b 100644
--- a/src/devices/bus/a2bus/a2themill.cpp
+++ b/src/devices/bus/a2bus/a2themill.cpp
@@ -40,9 +40,10 @@ DEFINE_DEVICE_TYPE(A2BUS_THEMILL, a2bus_themill_device, "a2themill", "Stellation
#define M6809_TAG "m6809"
-ADDRESS_MAP_START(a2bus_themill_device::m6809_mem)
- AM_RANGE(0x0000, 0xffff) AM_READWRITE(dma_r, dma_w)
-ADDRESS_MAP_END
+void a2bus_themill_device::m6809_mem(address_map &map)
+{
+ map(0x0000, 0xffff).rw(this, FUNC(a2bus_themill_device::dma_r), FUNC(a2bus_themill_device::dma_w));
+}
/***************************************************************************
FUNCTION PROTOTYPES