[NES] add remind to 242 to fix

This commit is contained in:
zeromus 2011-04-18 23:27:45 +00:00
parent 5e83510d1a
commit dae79600e7
1 changed files with 3 additions and 6 deletions

View File

@ -4,6 +4,8 @@ using System.Diagnostics;
namespace BizHawk.Emulation.Consoles.Nintendo
{
//(doesnt work in neshawk; works in fceux)
/*
PCB Class: Unknown
iNES Mapper #242
@ -35,17 +37,12 @@ mirroring - both
return true;
}
public override byte ReadPPU(int addr)
{
return base.ReadPPU(addr);
}
public override byte ReadPRG(int addr)
{
return ROM[addr + (prg * 0x8000)];
}
public override void WriteWRAM(int addr, byte value)
public override void WritePRG(int addr, byte value)
{
mirror = ((addr>>1) & 0x01);
prg = (addr >> 3) & 15;