diff options
author | 2012-09-08 19:27:44 +0000 | |
---|---|---|
committer | 2012-09-08 19:27:44 +0000 | |
commit | c7965e69d9920556b5ba6381d8eff1e30406b160 (patch) | |
tree | 410d16c764e1a128fd20ed246d5db19856268237 /src/emu/machine/scsibus.c | |
parent | 7fc6ec40eceb7859e42f9a87c284830d9bfbfe43 (diff) |
removed test ready command as scsidev already handles it. (nw)
Diffstat (limited to 'src/emu/machine/scsibus.c')
-rw-r--r-- | src/emu/machine/scsibus.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/emu/machine/scsibus.c b/src/emu/machine/scsibus.c index 3e35447028f..9d74b051a7e 100644 --- a/src/emu/machine/scsibus.c +++ b/src/emu/machine/scsibus.c @@ -271,16 +271,6 @@ void scsibus_device::scsibus_exec_command() // Check for locally executed commands, and if found execute them switch (command[0]) { - // Test ready - case SCSI_CMD_TEST_READY: - LOG(1,"SCSIBUS: test_ready\n"); - command_local=1; - xfer_count=0; - data_last=xfer_count; - bytes_left=0; - devices[last_id]->SetPhase(SCSI_PHASE_STATUS); - break; - // Recalibrate drive case SCSI_CMD_RECALIBRATE: LOG(1,"SCSIBUS: Recalibrate drive\n"); |