summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/decodmd3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/decodmd3.cpp')
-rw-r--r--src/mame/video/decodmd3.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/decodmd3.cpp b/src/mame/video/decodmd3.cpp
index aa2e8267888..736fe551ab3 100644
--- a/src/mame/video/decodmd3.cpp
+++ b/src/mame/video/decodmd3.cpp
@@ -126,9 +126,9 @@ void decodmd_type3_device::decodmd3_map(address_map &map)
{
map(0x00000000, 0x000fffff).bankr("dmdrom");
map(0x00800000, 0x0080ffff).bankrw("dmdram");
- map(0x00c00010, 0x00c00011).rw(this, FUNC(decodmd_type3_device::crtc_status_r), FUNC(decodmd_type3_device::crtc_address_w));
- map(0x00c00012, 0x00c00013).w(this, FUNC(decodmd_type3_device::crtc_register_w));
- map(0x00c00020, 0x00c00021).rw(this, FUNC(decodmd_type3_device::latch_r), FUNC(decodmd_type3_device::status_w));
+ map(0x00c00010, 0x00c00011).rw(FUNC(decodmd_type3_device::crtc_status_r), FUNC(decodmd_type3_device::crtc_address_w));
+ map(0x00c00012, 0x00c00013).w(FUNC(decodmd_type3_device::crtc_register_w));
+ map(0x00c00020, 0x00c00021).rw(FUNC(decodmd_type3_device::latch_r), FUNC(decodmd_type3_device::status_w));
}
MACHINE_CONFIG_START(decodmd_type3_device::device_add_mconfig)