summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/i80130.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/i80130.cpp')
-rw-r--r--src/devices/machine/i80130.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/i80130.cpp b/src/devices/machine/i80130.cpp
index 880c2c2d50c..de25b2dec6b 100644
--- a/src/devices/machine/i80130.cpp
+++ b/src/devices/machine/i80130.cpp
@@ -102,15 +102,15 @@ const tiny_rom_entry *i80130_device::device_rom_region() const
MACHINE_CONFIG_START(i80130_device::device_add_mconfig)
MCFG_DEVICE_ADD("pic", PIC8259, 0)
- MCFG_PIC8259_OUT_INT_CB(WRITELINE(i80130_device, irq_w))
+ MCFG_PIC8259_OUT_INT_CB(WRITELINE(*this, i80130_device, irq_w))
MCFG_DEVICE_ADD("pit", PIT8254, 0)
MCFG_PIT8253_CLK0(0)
- MCFG_PIT8253_OUT0_HANDLER(WRITELINE(i80130_device, systick_w))
+ MCFG_PIT8253_OUT0_HANDLER(WRITELINE(*this, i80130_device, systick_w))
MCFG_PIT8253_CLK1(0)
- MCFG_PIT8253_OUT1_HANDLER(WRITELINE(i80130_device, delay_w))
+ MCFG_PIT8253_OUT1_HANDLER(WRITELINE(*this, i80130_device, delay_w))
MCFG_PIT8253_CLK2(0)
- MCFG_PIT8253_OUT2_HANDLER(WRITELINE(i80130_device, baud_w))
+ MCFG_PIT8253_OUT2_HANDLER(WRITELINE(*this, i80130_device, baud_w))
MACHINE_CONFIG_END