summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-04-21 01:10:15 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-04-21 01:10:20 -0400
commitd8b60d3dbb3af64df66f90b4094b5b8b255f0c68 (patch)
tree4f1936397583c1874befceef669270580cfabc74
parentd29903e16cc6d45e3bc15e8c41866356d7230665 (diff)
tekram_dc820.cpp: Oops, device_t is not the exact type wanted here (nw)
-rw-r--r--src/devices/bus/isa/tekram_dc820.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/isa/tekram_dc820.cpp b/src/devices/bus/isa/tekram_dc820.cpp
index 4ffe4f3f335..bdf105ee9f1 100644
--- a/src/devices/bus/isa/tekram_dc820.cpp
+++ b/src/devices/bus/isa/tekram_dc820.cpp
@@ -94,7 +94,7 @@ static void tekram_scsi_devices(device_slot_interface &device)
void tekram_eisa_scsi_device::scsic_config(device_t *device)
{
device->set_clock(40_MHz_XTAL);
- device->irq_handler_cb().set(m_mpu, FUNC(i80186_cpu_device::int3_w));
+ downcast<ncr53cf94_device &>(*device).irq_handler_cb().set(m_mpu, FUNC(i80186_cpu_device::int3_w));
}
void tekram_eisa_scsi_device::scsi_add(machine_config &config)