summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/cpc/brunword4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/cpc/brunword4.cpp')
-rw-r--r--src/devices/bus/cpc/brunword4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/cpc/brunword4.cpp b/src/devices/bus/cpc/brunword4.cpp
index db5e8e1b57d..914ada94f15 100644
--- a/src/devices/bus/cpc/brunword4.cpp
+++ b/src/devices/bus/cpc/brunword4.cpp
@@ -74,7 +74,7 @@ void cpc_brunword4_device::device_start()
{
m_slot = dynamic_cast<cpc_expansion_slot_device *>(owner());
address_space &space = m_slot->cpu().space(AS_IO);
- space.install_write_handler(0xdf00,0xdfff,write8_delegate(FUNC(cpc_brunword4_device::rombank_w),this));
+ space.install_write_handler(0xdf00,0xdfff, write8_delegate(*this, FUNC(cpc_brunword4_device::rombank_w)));
}
void cpc_brunword4_device::device_reset()