mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-18 11:55:38 +00:00
CDROM: Implement Sync/00h command
This commit is contained in:
parent
0b347e2151
commit
22a0d8f93c
|
@ -915,6 +915,15 @@ void CDROM::ExecuteCommand()
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Command::Sync:
|
||||||
|
{
|
||||||
|
Log_DebugPrintf("CDROM sync command");
|
||||||
|
|
||||||
|
SendErrorResponse(STAT_ERROR, 0x40);
|
||||||
|
EndCommand();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
Log_ErrorPrintf("Unknown CDROM command 0x%04X with %u parameters, please report", static_cast<u16>(m_command),
|
Log_ErrorPrintf("Unknown CDROM command 0x%04X with %u parameters, please report", static_cast<u16>(m_command),
|
||||||
|
|
Loading…
Reference in a new issue