summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/msm6255.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/msm6255.cpp')
-rw-r--r--src/devices/video/msm6255.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/devices/video/msm6255.cpp b/src/devices/video/msm6255.cpp
index 4513327160a..c30810214b1 100644
--- a/src/devices/video/msm6255.cpp
+++ b/src/devices/video/msm6255.cpp
@@ -54,10 +54,11 @@
DEFINE_DEVICE_TYPE(MSM6255, msm6255_device, "msm6255", "Oki MSM6255 LCD Controller")
// I/O map
-ADDRESS_MAP_START(msm6255_device::map)
- AM_RANGE(0x00, 0x00) AM_READWRITE(dr_r, dr_w)
- AM_RANGE(0x01, 0x01) AM_READWRITE(ir_r, ir_w)
-ADDRESS_MAP_END
+void msm6255_device::map(address_map &map)
+{
+ map(0x00, 0x00).rw(this, FUNC(msm6255_device::dr_r), FUNC(msm6255_device::dr_w));
+ map(0x01, 0x01).rw(this, FUNC(msm6255_device::ir_r), FUNC(msm6255_device::ir_w));
+}
// default address map
ADDRESS_MAP_START(msm6255_device::msm6255)