summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-03-20 08:42:36 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-03-20 08:42:36 -0400
commit00dcbb3d7b432b7040ae47f0ce1e5252a068949c (patch)
tree088a3fcb1b07e6773aeecb51b717c4f86ef41611
parent2b30eeae8ec0cd6140602fa87e096cf6f72856b1 (diff)
aha1542b: Use correct interrupt line (nw)
-rw-r--r--src/devices/bus/isa/aha1542b.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/isa/aha1542b.cpp b/src/devices/bus/isa/aha1542b.cpp
index a6aeed94a9b..ac5c25e3d71 100644
--- a/src/devices/bus/isa/aha1542b.cpp
+++ b/src/devices/bus/isa/aha1542b.cpp
@@ -60,7 +60,7 @@ static void aha154x_scsi_devices(device_slot_interface &device)
void aha154x_device::scsic_config(device_t *device)
{
device->set_clock(20'000'000);
- downcast<aic6250_device &>(*device).int_cb().set_inputline("^^localcpu", I8085_RST75_LINE);
+ downcast<aic6250_device &>(*device).int_cb().set_inputline("^^localcpu", I8085_RST65_LINE);
}
void aha154x_device::device_add_mconfig(machine_config &config)