From a8bc5133ec214ce03f08dc3370b8b403be242e15 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 4 Jan 2017 21:44:01 +0100 Subject: [PATCH] The ATAPI implementation of the READ SUBCHANNEL command now correctly issues INVALDI FIELD IN CMD PACKET and not ILLEGAL OPCODE. --- src/ide.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ide.c b/src/ide.c index 43335ea24..1d533491b 100644 --- a/src/ide.c +++ b/src/ide.c @@ -2581,7 +2581,7 @@ static void atapicommand(int ide_board) if (idebufferb[3]!=1) { // pclog("Read subchannel check condition %02X\n",idebufferb[3]); - atapi_illegal_opcode(ide); + atapi_invalid_field(ide); break; }