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:
parent
a21c1a144c
commit
5be10ff8d5
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue