Skip to content
Permalink
Browse files
Merge pull request #10686 from Tilka/pikmin_demo
DSPHLE: handle crc of Pikmin 1 GC US Demo
  • Loading branch information
Pokechu22 committed May 22, 2022
2 parents a6ace45 + d7da4ac commit 8b3517a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
@@ -261,6 +261,7 @@ std::unique_ptr<UCodeInterface> UCodeFactory(u32 crc, DSPHLE* dsphle, bool wii)
case 0x6ba3b3ea: // GC IPL - PAL
case 0x24b22038: // GC IPL - NTSC
case 0x2fcdf1ec: // Zelda FSA - US
case 0xdf059f68: // Pikmin 1 GC - US Demo
case 0x4be6a5cb: // Pikmin 1 GC - US
case 0x267fd05a: // Pikmin 1 GC - PAL
case 0x42f64ac4: // Luigi's Mansion - US
@@ -77,6 +77,8 @@ static const std::map<u32, u32> UCODE_FLAGS = {
WEIRD_CMD_0C},
// GameCube IPL/BIOS, PAL.
{0x6BA3B3EA, LIGHT_PROTOCOL | FOUR_MIXING_DESTS | NO_CMD_0D},
// Pikmin 1 GC NTSC Demo.
{0xDF059F68, LIGHT_PROTOCOL | NO_CMD_0D | SUPPORTS_GBA_CRYPTO},
// Pikmin 1 GC NTSC.
// Animal Crossing.
{0x4BE6A5CB, LIGHT_PROTOCOL | NO_CMD_0D | SUPPORTS_GBA_CRYPTO},

0 comments on commit 8b3517a

Please sign in to comment.