NesHawk - Mapper 146 - Support 128 prg and 128 chr for Jaau Kong 2-in-1

This commit is contained in:
adelikat 2016-10-30 13:29:43 -05:00
parent 9632ceb7fc
commit f907b10ba0
1 changed files with 4 additions and 2 deletions

View File

@ -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;