Fix OS Boot on Native USB, Issue #456

Minor change to ch376scsi.asm resolves an issue that caused multi-sector I/O to fail.
This commit is contained in:
Wayne Warthen
2025-07-19 18:20:01 -07:00
parent d754e475c2
commit 42385fd120

View File

@@ -119,6 +119,7 @@ CH_SCSI_READ:
POP HL
LD BC, 512
ADD HL, BC
OR A
RET
;
; ### Function 0x14 -- Disk Write (DIOWRITE)
@@ -157,7 +158,8 @@ CH_SCSI_WRITE:
POP HL
LD BC, 512
ADD HL, BC
ret
OR A
RET
CH_SCSI_VERIFY:
CH_SCSI_FORMAT: