From cec18b863511cc4e475c395c87e6551ae168c82f Mon Sep 17 00:00:00 2001 From: AJR Date: Fri, 6 Dec 2019 19:16:17 -0500 Subject: ascsasi: Actually generate the control pulses (nw) --- src/devices/bus/s100/ascsasi.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/devices') diff --git a/src/devices/bus/s100/ascsasi.cpp b/src/devices/bus/s100/ascsasi.cpp index 0b97b7ef647..7a52a8cb7e0 100644 --- a/src/devices/bus/s100/ascsasi.cpp +++ b/src/devices/bus/s100/ascsasi.cpp @@ -124,20 +124,24 @@ WRITE_LINE_MEMBER(asc_sasi_device::req_w) void asc_sasi_device::sasi_sel_pulse() { + m_sasi->ctrl_w(7, nscsi_device::S_SEL, nscsi_device::S_SEL); m_sel_off_timer->adjust(s_pulse_width); } void asc_sasi_device::sasi_rst_pulse() { + m_sasi->ctrl_w(7, nscsi_device::S_RST, nscsi_device::S_RST); m_rst_off_timer->adjust(s_pulse_width); } TIMER_CALLBACK_MEMBER(asc_sasi_device::sel_off) { + m_sasi->ctrl_w(7, 0, nscsi_device::S_SEL); } TIMER_CALLBACK_MEMBER(asc_sasi_device::rst_off) { + m_sasi->ctrl_w(7, 0, nscsi_device::S_RST); } u8 asc_sasi_device::s100_smemr_r(offs_t offset) -- cgit v1.2.3