diff options
author | 2014-09-28 01:21:43 +0000 | |
---|---|---|
committer | 2014-09-28 01:21:43 +0000 | |
commit | c5e24175a17c4547ec306d95a6f67cb80882303e (patch) | |
tree | 060333c0e683c7b16678822941baca44c05fd233 /src/emu/bus/scsi/scsi.c | |
parent | 41d627253cf55dfc323b7e950f59b8221933d806 (diff) |
(mess) pc9801: make sasi partially work (nw)
scsi: sync rest of lines with input buffer (nw)
---
The 9801f will read the hdd but appears to not like disks without 256 byte sectors.
The ux and rs don't even attempt to access the sasi controller and seem to have no driver in their firmwares, are they supposed to have an external rom?
Diffstat (limited to 'src/emu/bus/scsi/scsi.c')
-rw-r--r-- | src/emu/bus/scsi/scsi.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/emu/bus/scsi/scsi.c b/src/emu/bus/scsi/scsi.c index 1aa25104ac3..7bf6f732064 100644 --- a/src/emu/bus/scsi/scsi.c +++ b/src/emu/bus/scsi/scsi.c @@ -122,6 +122,16 @@ void SCSI_PORT_DEVICE::device_start() m_data5_handler(0); m_data6_handler(0); m_data7_handler(0); + + m_bsy_handler(0); + m_sel_handler(0); + m_cd_handler(0); + m_io_handler(0); + m_msg_handler(0); + m_req_handler(0); + m_ack_handler(0); + m_atn_handler(0); + m_rst_handler(0); } void SCSI_PORT_DEVICE::update_bsy() |