From 223116252ba38fc40d3970e864d508e133bcab42 Mon Sep 17 00:00:00 2001 From: goyuken Date: Wed, 19 Feb 2014 16:33:59 +0000 Subject: [PATCH] NES: sunsoft 1: clarify code, no emulation changes --- .../Consoles/Nintendo/NES/Boards/Sunsoft1.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Sunsoft1.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Sunsoft1.cs index f3646249b4..ba379f2201 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Sunsoft1.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Sunsoft1.cs @@ -52,7 +52,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES public override void WriteWRAM(int addr, byte value) { left_piece = value & 7 & chr_mask; - right_piece = (value >> 4) & 7 & chr_mask; + // the bank at ppu $1000 has only 2 selection bits. the high bit is frozen to 1 + // this doesn't matter in practice because the only game on this board with 32K CHR, + // wing of madoola, writes a '1' to the unread bit. + right_piece = (value >> 4 & 3 | 4) & chr_mask; } public override void SyncState(Serializer ser)