NES: add mediocre support for mapper158 (but all of the alien syndrome roms i've seen in the wild are marked mapper118, so...)

This commit is contained in:
goyuken 2014-02-03 15:13:24 +00:00
parent a21c1a144c
commit 5be10ff8d5
1 changed files with 6 additions and 0 deletions

View File

@ -21,8 +21,14 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
AssertBattery(true);
break;
case "TENGEN-800037": //Alien Syndrome (U)
// this board is actually a RAMBO-1 (mapper064) with TLS-style rewiring
// but it seems to work fine here, so lets not worry about it
AssertPrg(128); AssertChr(128); AssertVram(0); AssertWram(0);
break;
case "MAPPER158":
// as above
AssertVram(0); Cart.wram_size = 0;
break;
case "HVC-TLSROM":
AssertPrg(256); AssertChr(128); AssertVram(0); AssertWram(0);
break;