summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/dragon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/dragon.cpp')
-rw-r--r--src/mame/machine/dragon.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/dragon.cpp b/src/mame/machine/dragon.cpp
index ce4d6dd1be3..d5c217b9130 100644
--- a/src/mame/machine/dragon.cpp
+++ b/src/mame/machine/dragon.cpp
@@ -236,9 +236,9 @@ void d64plus_state::device_start()
dragon_state::device_start();
address_space &space = m_maincpu->space(AS_PROGRAM);
- space.install_readwrite_handler(0xffe0, 0xffe0, read8smo_delegate(FUNC(mc6845_device::status_r), &*m_crtc), write8smo_delegate(FUNC(mc6845_device::address_w), &*m_crtc));
- space.install_readwrite_handler(0xffe1, 0xffe1, read8smo_delegate(FUNC(mc6845_device::register_r), &*m_crtc), write8smo_delegate(FUNC(mc6845_device::register_w), &*m_crtc));
- space.install_readwrite_handler(0xffe2, 0xffe2, READ8_DELEGATE(d64plus_state, d64plus_6845_disp_r), WRITE8_DELEGATE(d64plus_state, d64plus_bank_w));
+ space.install_readwrite_handler(0xffe0, 0xffe0, read8smo_delegate(*m_crtc, FUNC(mc6845_device::status_r)), write8smo_delegate(*m_crtc, FUNC(mc6845_device::address_w)));
+ space.install_readwrite_handler(0xffe1, 0xffe1, read8smo_delegate(*m_crtc, FUNC(mc6845_device::register_r)), write8smo_delegate(*m_crtc, FUNC(mc6845_device::register_w)));
+ space.install_readwrite_handler(0xffe2, 0xffe2, read8_delegate(*this, FUNC(d64plus_state::d64plus_6845_disp_r)), write8_delegate(*this, FUNC(d64plus_state::d64plus_bank_w)));
// allocate memory
m_plus_ram.allocate(0x10000);