From 0e6643c7c24daba369ef52a8564899e6b86cfe6c Mon Sep 17 00:00:00 2001 From: AJR Date: Mon, 6 May 2019 06:39:13 -0400 Subject: aha1740: Fix crash on validation (nw) --- src/devices/bus/isa/aha174x.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/devices/bus/isa/aha174x.cpp b/src/devices/bus/isa/aha174x.cpp index 21304f7fe9d..4568eb32762 100644 --- a/src/devices/bus/isa/aha174x.cpp +++ b/src/devices/bus/isa/aha174x.cpp @@ -91,7 +91,12 @@ void aha1740_device::device_add_mconfig(machine_config &config) HPC46003(config, m_hpc, 40_MHz_XTAL / 2); m_hpc->set_addrmap(AS_PROGRAM, &aha1740_device::hpc_map); + AIC565(config, m_busaic); + m_busaic->hrst_callback().set_inputline(m_hpc, INPUT_LINE_RESET); + //m_busaic->srst_callback().set_inputline(m_hpc, hpc_device::EI_LINE); + I82355(config, "bmic", 0); + //bmic.lint_callback().set_inputline(m_hpc, hpc_device::I2_LINE); NSCSI_BUS(config, "scsi"); NSCSI_CONNECTOR(config, "scsi:0", aha174x_scsi_devices, nullptr); -- cgit v1.2.3