CDROM: Implement Sync/00h command

This commit is contained in:
Connor McLaughlin 2020-03-28 02:24:36 +10:00
parent 0b347e2151
commit 22a0d8f93c

View file

@ -915,6 +915,15 @@ void CDROM::ExecuteCommand()
}
break;
case Command::Sync:
{
Log_DebugPrintf("CDROM sync command");
SendErrorResponse(STAT_ERROR, 0x40);
EndCommand();
}
break;
default:
{
Log_ErrorPrintf("Unknown CDROM command 0x%04X with %u parameters, please report", static_cast<u16>(m_command),