mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
CDROM: Return console region string based on system
This commit is contained in:
parent
e0a339ca96
commit
419422a2d7
|
@ -964,8 +964,8 @@ void CDROM::ExecuteTestCommand(u8 subcommand)
|
||||||
case 0x20: // Get CDROM BIOS Date/Version
|
case 0x20: // Get CDROM BIOS Date/Version
|
||||||
{
|
{
|
||||||
Log_DebugPrintf("Get CDROM BIOS Date/Version");
|
Log_DebugPrintf("Get CDROM BIOS Date/Version");
|
||||||
static constexpr u8 response[] = {0x94, 0x09, 0x19, 0xC0};
|
|
||||||
// static constexpr u8 response[] = {0x96, 0x09, 0x12, 0xC2};
|
static constexpr u8 response[] = {0x95, 0x05, 0x16, 0xC1};
|
||||||
m_response_fifo.PushRange(response, countof(response));
|
m_response_fifo.PushRange(response, countof(response));
|
||||||
SetInterrupt(Interrupt::ACK);
|
SetInterrupt(Interrupt::ACK);
|
||||||
EndCommand();
|
EndCommand();
|
||||||
|
@ -975,8 +975,32 @@ void CDROM::ExecuteTestCommand(u8 subcommand)
|
||||||
case 0x22:
|
case 0x22:
|
||||||
{
|
{
|
||||||
Log_DebugPrintf("Get CDROM region ID string");
|
Log_DebugPrintf("Get CDROM region ID string");
|
||||||
|
|
||||||
|
switch (m_system->GetRegion())
|
||||||
|
{
|
||||||
|
case ConsoleRegion::NTSC_J:
|
||||||
|
{
|
||||||
|
static constexpr u8 response[] = {'f', 'o', 'r', ' ', 'J', 'a', 'p', 'a', 'n'};
|
||||||
|
m_response_fifo.PushRange(response, countof(response));
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ConsoleRegion::PAL:
|
||||||
|
{
|
||||||
|
static constexpr u8 response[] = {'f', 'o', 'r', ' ', 'E', 'u', 'r', 'o', 'p', 'e'};
|
||||||
|
m_response_fifo.PushRange(response, countof(response));
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ConsoleRegion::NTSC_U:
|
||||||
|
default:
|
||||||
|
{
|
||||||
static constexpr u8 response[] = {'f', 'o', 'r', ' ', 'U', '/', 'C'};
|
static constexpr u8 response[] = {'f', 'o', 'r', ' ', 'U', '/', 'C'};
|
||||||
m_response_fifo.PushRange(response, countof(response));
|
m_response_fifo.PushRange(response, countof(response));
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
SetInterrupt(Interrupt::ACK);
|
SetInterrupt(Interrupt::ACK);
|
||||||
EndCommand();
|
EndCommand();
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue