From 610abc1a751106260c3754c04f675febd1851150 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Tue, 7 Apr 2020 11:54:24 +1000 Subject: [PATCH] BIOS: Make SCPH-3000 BIOS known --- src/core/bios.cpp | 13 +++++++------ src/core/host_interface.cpp | 2 ++ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/core/bios.cpp b/src/core/bios.cpp index ed624d2d0..8a7355756 100644 --- a/src/core/bios.cpp +++ b/src/core/bios.cpp @@ -1,6 +1,6 @@ #include "bios.h" -#include "common/log.h" #include "common/assert.h" +#include "common/log.h" #include "common/md5_digest.h" #include "cpu_disasm.h" #include @@ -38,6 +38,7 @@ std::string Hash::ToString() const static constexpr Hash SCPH_1000_HASH = MakeHashFromString("239665b1a3dade1b5a52c06338011044"); static constexpr Hash SCPH_1001_HASH = MakeHashFromString("924e392ed05558ffdb115408c263dccf"); static constexpr Hash SCPH_1002_HASH = MakeHashFromString("54847e693405ffeb0359c6287434cbef"); +static constexpr Hash SCPH_3000_HASH = MakeHashFromString("849515939161e62f6b866f6853006780"); static constexpr Hash SCPH_5500_HASH = MakeHashFromString("8dd7d5296a650fac7319bce665a6a53c"); static constexpr Hash SCPH_5501_HASH = MakeHashFromString("490f666e1afb15b7362b406ed1cea246"); static constexpr Hash SCPH_5502_HASH = MakeHashFromString("32736f17079d0b2b7024407c39bd3050"); @@ -99,7 +100,7 @@ bool IsValidHashForRegion(ConsoleRegion region, const Hash& hash) switch (region) { case ConsoleRegion::NTSC_J: - return (hash == SCPH_1000_HASH || hash == SCPH_5500_HASH); + return (hash == SCPH_1000_HASH || hash == SCPH_3000_HASH || hash == SCPH_5500_HASH); case ConsoleRegion::NTSC_U: return (hash == SCPH_1001_HASH || hash == SCPH_5501_HASH); @@ -133,8 +134,8 @@ void PatchBIOS(Image& bios, u32 address, u32 value, u32 mask /*= UINT32_C(0xFFFF bool PatchBIOSEnableTTY(Image& image, const Hash& hash) { - if (hash != SCPH_1000_HASH && hash != SCPH_1001_HASH && hash != SCPH_1002_HASH && hash != SCPH_5500_HASH && - hash != SCPH_5501_HASH && hash != SCPH_5502_HASH) + if (hash != SCPH_1000_HASH && hash != SCPH_1001_HASH && hash != SCPH_1002_HASH && hash != SCPH_3000_HASH && + hash != SCPH_5500_HASH && hash != SCPH_5501_HASH && hash != SCPH_5502_HASH) { Log_WarningPrintf("Incompatible version for TTY patch: %s", hash.ToString().c_str()); return false; @@ -148,8 +149,8 @@ bool PatchBIOSEnableTTY(Image& image, const Hash& hash) bool PatchBIOSFastBoot(Image& image, const Hash& hash) { - if (hash != SCPH_1000_HASH && hash != SCPH_1001_HASH && hash != SCPH_1002_HASH && hash != SCPH_5500_HASH && - hash != SCPH_5501_HASH && hash != SCPH_5502_HASH) + if (hash != SCPH_1000_HASH && hash != SCPH_1001_HASH && hash != SCPH_1002_HASH && hash != SCPH_3000_HASH && + hash != SCPH_5500_HASH && hash != SCPH_5501_HASH && hash != SCPH_5502_HASH) { Log_WarningPrintf("Incompatible version for fast-boot patch: %s", hash.ToString().c_str()); return false; diff --git a/src/core/host_interface.cpp b/src/core/host_interface.cpp index a0b93ee28..8eea861d3 100644 --- a/src/core/host_interface.cpp +++ b/src/core/host_interface.cpp @@ -411,6 +411,8 @@ std::optional> HostInterface::GetBIOSImage(ConsoleRegion region) case ConsoleRegion::NTSC_J: TRY_FILENAME(GetRelativePath(m_settings.bios_path, "scph1000.bin")); TRY_FILENAME(GetRelativePath(m_settings.bios_path, "ps-10j.bin")); + TRY_FILENAME(GetRelativePath(m_settings.bios_path, "scph3000.bin")); + TRY_FILENAME(GetRelativePath(m_settings.bios_path, "ps-11j.bin")); TRY_FILENAME(GetRelativePath(m_settings.bios_path, "scph5500.bin")); TRY_FILENAME(GetRelativePath(m_settings.bios_path, "ps-30j.bin")); break;