nes: vrc7: minor clarification

This commit is contained in:
goyuken 2014-01-20 05:55:38 +00:00
parent 3ab8e60d1b
commit d1bc64d948
1 changed files with 2 additions and 1 deletions

View File

@ -102,8 +102,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
if (Cart.pcb == "353429")
{
//tiny toons 2
remap = (addr) => ((addr & 0xF000) | ((addr & 0x8) >> 3));
// for consistency, we map the addr line used for the FM chip even though
// there is no resonator or crystal on the board for the fm chip
remap = (addr) => (addr & 0xF000) | ((addr & 0x8) >> 3) | (addr & 0x20) >> 4;
fm = null;
}
else if (Cart.pcb == "352402")