summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/eis_sad8852.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/eis_sad8852.cpp')
-rw-r--r--src/devices/bus/isa/eis_sad8852.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/eis_sad8852.cpp b/src/devices/bus/isa/eis_sad8852.cpp
index f4d634d1033..6e22a5f6d76 100644
--- a/src/devices/bus/isa/eis_sad8852.cpp
+++ b/src/devices/bus/isa/eis_sad8852.cpp
@@ -236,8 +236,8 @@ void isa16_sad8852_device::device_reset()
{
m_isa->install_device(
0x378, 0x378, // Wrong, need to find real i/o addresses
- read8_delegate(FUNC( isa16_sad8852_device::sad8852_r ), this),
- write8_delegate(FUNC( isa16_sad8852_device::sad8852_w ), this));
+ read8_delegate(*this, FUNC(isa16_sad8852_device::sad8852_r)),
+ write8_delegate(*this, FUNC(isa16_sad8852_device::sad8852_w)));
m_irq = m_isairq->read();
m_installed = true;
}