summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/banctec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/banctec.cpp')
-rw-r--r--src/mame/drivers/banctec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/banctec.cpp b/src/mame/drivers/banctec.cpp
index d22886378dc..becd7e8476b 100644
--- a/src/mame/drivers/banctec.cpp
+++ b/src/mame/drivers/banctec.cpp
@@ -63,7 +63,7 @@ void banctec_state::banctec_mcu_mem(address_map &map)
map(0x0000, 0x00ff).ram(); /* Probably wrong. Must be verified on pcb! */
map(0x2000, 0x2000).rw("crtc", FUNC(mc6845_device::status_r), FUNC(mc6845_device::address_w));
map(0x2001, 0x2001).rw("crtc", FUNC(mc6845_device::register_r), FUNC(mc6845_device::register_w));
- map(0x2003, 0x2003).w(this, FUNC(banctec_state::videoram_w));
+ map(0x2003, 0x2003).w(FUNC(banctec_state::videoram_w));
map(0x8000, 0x80ff).ram().share("videoram"); /* Probably wrong. Must be verified on pcb! */
map(0xe000, 0xffff).rom().region("mcu", 0x0000);
}