summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp9845_io/hp9845_io.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hp9845_io/hp9845_io.cpp')
-rw-r--r--src/devices/bus/hp9845_io/hp9845_io.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/hp9845_io/hp9845_io.cpp b/src/devices/bus/hp9845_io/hp9845_io.cpp
index efb9124c317..a6d09154671 100644
--- a/src/devices/bus/hp9845_io/hp9845_io.cpp
+++ b/src/devices/bus/hp9845_io/hp9845_io.cpp
@@ -97,13 +97,13 @@ WRITE_LINE_MEMBER(hp9845_io_slot_device::dmar_w)
m_dmar_cb_func(state);
}
-int hp9845_io_slot_device::get_rw_handlers(read16_delegate& rhandler , write16_delegate& whandler)
+int hp9845_io_slot_device::get_rw_handlers(read16m_delegate& rhandler , write16m_delegate& whandler)
{
device_hp9845_io_interface *card = get_card_device();
if (card) {
- rhandler = read16_delegate(*card, FUNC(device_hp9845_io_interface::reg_r));
- whandler = write16_delegate(*card, FUNC(device_hp9845_io_interface::reg_w));
+ rhandler = read16m_delegate(*card, FUNC(device_hp9845_io_interface::reg_r));
+ whandler = write16m_delegate(*card, FUNC(device_hp9845_io_interface::reg_w));
return card->get_sc();
} else {
return -1;