mirror of
https://github.com/holub/mame
synced 2025-04-21 07:52:35 +03:00
nscsi_hd: verify stub (nw)
Windows NT setup uses the VERIFY command (without data comparison).
This commit is contained in:
parent
c787e443f9
commit
e50efb8f59
@ -508,6 +508,14 @@ void nscsi_harddisk_device::scsi_command()
|
||||
scsi_status_complete(SS_GOOD);
|
||||
break;
|
||||
|
||||
case SC_VERIFY:
|
||||
LOG("command VERIFY BytChk %d\n", !!(scsi_cmdbuf[1] & 0x02));
|
||||
if (!(scsi_cmdbuf[1] & 0x02))
|
||||
scsi_status_complete(SS_GOOD);
|
||||
else
|
||||
scsi_unknown_command();
|
||||
break;
|
||||
|
||||
default:
|
||||
LOG("command %02x ***UNKNOWN***\n", scsi_cmdbuf[0]);
|
||||
nscsi_full_device::scsi_command();
|
||||
|
Loading…
Reference in New Issue
Block a user