parent
8b2b12585a
commit
2790ec1801
|
@ -71,7 +71,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
|
||||
public override void WritePRG(int addr, byte value)
|
||||
{
|
||||
chr = ((value & 3) & chr_mask);
|
||||
chr = ((value & 7) & chr_mask);
|
||||
prg = (((value>>4) & 3) & prg_mask);
|
||||
}
|
||||
|
||||
|
@ -82,4 +82,4 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
ser.Sync("prg", ref prg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue