mirror of
https://github.com/dingusdev/dingusppc.git
synced 2025-01-11 05:29:43 +00:00
scsi_bus: fix device selection bug.
This commit is contained in:
parent
5a59b97257
commit
7bc4b8840a
@ -195,7 +195,7 @@ bool ScsiBus::begin_selection(int initiator_id, int target_id, bool atn)
|
||||
|
||||
this->assert_ctrl_line(initiator_id, SCSI_CTRL_SEL);
|
||||
|
||||
this->data_lines |= (1 << initiator_id) | (1 << target_id);
|
||||
this->data_lines = (1 << initiator_id) | (1 << target_id);
|
||||
|
||||
if (atn) {
|
||||
assert_ctrl_line(initiator_id, SCSI_CTRL_ATN);
|
||||
|
Loading…
x
Reference in New Issue
Block a user