diff options
author | 2025-04-15 20:31:35 +0100 | |
---|---|---|
committer | 2025-04-16 05:31:35 +1000 | |
commit | fb033d7a24aff1a3d50a42eb07a3045795797f0f (patch) | |
tree | 7383d473d90febea5bf64f2949123f809e3f9083 | |
parent | 596378bfe0b3cd154d31ed54a052c5ac8b82d9c1 (diff) |
machine/nscsi_bus.cpp: Changed data release delay to 400ns to match the comment. (#13593)
It was previously using a value of 40ns.
-rw-r--r-- | src/devices/machine/nscsi_bus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/nscsi_bus.cpp b/src/devices/machine/nscsi_bus.cpp index 1c64f1f1b47..d1fa9a1265d 100644 --- a/src/devices/machine/nscsi_bus.cpp +++ b/src/devices/machine/nscsi_bus.cpp @@ -902,7 +902,7 @@ attotime nscsi_full_device::scsi_cable_skew_delay() // Data release delay (400ns) attotime nscsi_full_device::scsi_data_release_delay() { - return attotime::from_nsec(40); + return attotime::from_nsec(400); } // Deskew delay (45ns) |