summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-12-06 19:16:17 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-12-06 19:16:17 -0500
commitcec18b863511cc4e475c395c87e6551ae168c82f (patch)
tree46d011147cbc1149f4371d1ff4990c1deab21ab6 /src/devices
parentefbe4b30ba2a9eee0ac278cfb5597aee0dab08f4 (diff)
ascsasi: Actually generate the control pulses (nw)
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/bus/s100/ascsasi.cpp4
1 files changed, 4 insertions, 0 deletions
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)