diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SachenSimple.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SachenSimple.cs index bd2ec053d6..7b27880341 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SachenSimple.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SachenSimple.cs @@ -49,8 +49,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES default: return false; } - AssertPrg(16, 32, 64); - AssertChr(8, 16, 32, 64); + + // adelikat: Jaau Kong 2-in-1 is 128 prg and 128 chr. Don't know if that's a valid configuration, but the game works + AssertPrg(16, 32, 64, 128); + AssertChr(8, 16, 32, 64, 128); AssertVram(0); Cart.wram_size = 0; prg_mask = Cart.prg_size / 32 - 1;