diff options
author | 2019-05-06 08:15:04 -0400 | |
---|---|---|
committer | 2019-05-06 08:15:10 -0400 | |
commit | 94f9ebac75e54fc5074773416fbe07adc6835557 (patch) | |
tree | 011589a5da48cf1d620a58a9bb92c7fb64cd3a8b /src/devices/bus/isa | |
parent | f64cf21a2cf7cdc32d14bb58eab266021e485741 (diff) |
Oh no, not segfaults again (nw)
Diffstat (limited to 'src/devices/bus/isa')
-rw-r--r-- | src/devices/bus/isa/aha174x.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/devices/bus/isa/aha174x.cpp b/src/devices/bus/isa/aha174x.cpp index be248ca8931..ef81ff6745f 100644 --- a/src/devices/bus/isa/aha174x.cpp +++ b/src/devices/bus/isa/aha174x.cpp @@ -103,6 +103,9 @@ void aha1740_device::device_add_mconfig(machine_config &config) I82355(config, "bmic", 0); //bmic.lint_callback().set_inputline(m_hpc, hpc_device::I2_LINE); + IDT7201(config, m_fifo[0]); + IDT7201(config, m_fifo[1]); + NSCSI_BUS(config, "scsi"); NSCSI_CONNECTOR(config, "scsi:0", aha174x_scsi_devices, nullptr); NSCSI_CONNECTOR(config, "scsi:1", aha174x_scsi_devices, nullptr); |