summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/decodmd2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/decodmd2.cpp')
-rw-r--r--src/mame/video/decodmd2.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/decodmd2.cpp b/src/mame/video/decodmd2.cpp
index eadbb8b7cf0..02e459e56bc 100644
--- a/src/mame/video/decodmd2.cpp
+++ b/src/mame/video/decodmd2.cpp
@@ -121,11 +121,11 @@ MC6845_UPDATE_ROW( decodmd_type2_device::crtc_update_row )
void decodmd_type2_device::decodmd2_map(address_map &map)
{
map(0x0000, 0x2fff).bankrw("dmdram");
- map(0x3000, 0x3000).rw(this, FUNC(decodmd_type2_device::crtc_status_r), FUNC(decodmd_type2_device::crtc_address_w));
- map(0x3001, 0x3001).w(this, FUNC(decodmd_type2_device::crtc_register_w));
- map(0x3002, 0x3002).w(this, FUNC(decodmd_type2_device::bank_w));
- map(0x3003, 0x3003).r(this, FUNC(decodmd_type2_device::latch_r));
- map(0x4000, 0x7fff).bankr("dmdbank1").w(this, FUNC(decodmd_type2_device::status_w));
+ map(0x3000, 0x3000).rw(FUNC(decodmd_type2_device::crtc_status_r), FUNC(decodmd_type2_device::crtc_address_w));
+ map(0x3001, 0x3001).w(FUNC(decodmd_type2_device::crtc_register_w));
+ map(0x3002, 0x3002).w(FUNC(decodmd_type2_device::bank_w));
+ map(0x3003, 0x3003).r(FUNC(decodmd_type2_device::latch_r));
+ map(0x4000, 0x7fff).bankr("dmdbank1").w(FUNC(decodmd_type2_device::status_w));
map(0x8000, 0xffff).bankr("dmdbank2"); // last 32k of ROM
}