summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/d9060.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2016-07-08 16:55:52 -0400
committer AJR <ajrhacker@users.noreply.github.com>2016-07-08 16:55:52 -0400
commite720f794816677762e1d35864d6946499faab520 (patch)
tree9ca63a45e59046a1910f33de15f62fd40ed14d83 /src/devices/bus/ieee488/d9060.cpp
parentaaa3090dd3a40587f3d4cd7ab8016bcd96131e08 (diff)
Further IRQ passthrough cleanup
- Remove irq_line methods from M6502, M6800, M6809, S2600 and replace uses with DEVCB_INPUTLINE - Remove a few IRQ passthroughs from spiders.cpp - Add several aliases for M6800_IRQ_LINE
Diffstat (limited to 'src/devices/bus/ieee488/d9060.cpp')
-rw-r--r--src/devices/bus/ieee488/d9060.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/ieee488/d9060.cpp b/src/devices/bus/ieee488/d9060.cpp
index 68b63589ed9..97847aa9028 100644
--- a/src/devices/bus/ieee488/d9060.cpp
+++ b/src/devices/bus/ieee488/d9060.cpp
@@ -392,7 +392,7 @@ static MACHINE_CONFIG_FRAGMENT( d9060 )
MCFG_VIA6522_WRITEPB_HANDLER(WRITE8(d9060_base_t, via_pb_w))
MCFG_VIA6522_CA2_HANDLER(WRITELINE(d9060_base_t, ack_w))
MCFG_VIA6522_CB2_HANDLER(WRITELINE(d9060_base_t, enable_w))
- MCFG_VIA6522_IRQ_HANDLER(DEVWRITELINE(M6502_HDC_TAG, m6502_device, irq_line))
+ MCFG_VIA6522_IRQ_HANDLER(INPUTLINE(M6502_HDC_TAG, M6502_IRQ_LINE))
MCFG_DEVICE_ADD(SASIBUS_TAG, SCSI_PORT, 0)
MCFG_SCSI_REQ_HANDLER(DEVWRITELINE(M6522_TAG, via6522_device, write_ca1))