summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/i8089/i8089.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/i8089/i8089.cpp')
-rw-r--r--src/devices/cpu/i8089/i8089.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/i8089/i8089.cpp b/src/devices/cpu/i8089/i8089.cpp
index df577224e78..c99fe209aba 100644
--- a/src/devices/cpu/i8089/i8089.cpp
+++ b/src/devices/cpu/i8089/i8089.cpp
@@ -210,9 +210,9 @@ void i8089_device::state_string_export(const device_state_entry &entry, std::str
MACHINE_CONFIG_START(i8089_device::device_add_mconfig)
MCFG_I8089_CHANNEL_ADD("1")
- MCFG_I8089_CHANNEL_SINTR(WRITELINE(i8089_device, ch1_sintr_w))
+ MCFG_I8089_CHANNEL_SINTR(WRITELINE(*this, i8089_device, ch1_sintr_w))
MCFG_I8089_CHANNEL_ADD("2")
- MCFG_I8089_CHANNEL_SINTR(WRITELINE(i8089_device, ch2_sintr_w))
+ MCFG_I8089_CHANNEL_SINTR(WRITELINE(*this, i8089_device, ch2_sintr_w))
MACHINE_CONFIG_END