From 5520627b7eb708d0bb672bf4d436e489ec498f87 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Wed, 25 May 2016 12:37:23 -0400 Subject: [PATCH] Fix Peek_memory so it points to mapper Peek_memory --- .../Consoles/Atari/2600/Atari2600.Core.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs index af3928a556..19fcd5a887 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs @@ -54,10 +54,8 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 if ((addr & 0x1080) == 0x0080) { - _tia.bus_state = M6532.ReadMemory(addr, false); return M6532.ReadMemory(addr, true); } - _tia.bus_state = Rom[addr & 0x0FFF]; return Rom[addr & 0x0FFF]; } @@ -87,7 +85,6 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 internal void BasePokeMemory(ushort addr, byte value) { - _tia.bus_state = value; addr = (ushort)(addr & 0x1FFF); if ((addr & 0x1080) == 0) { @@ -121,8 +118,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 internal byte PeekMemory(ushort addr) { - var temp = _mapper.ReadMemory((ushort)(addr & 0x1FFF)); - _tia.bus_state = temp; + var temp = _mapper.PeekMemory((ushort)(addr & 0x1FFF)); return temp; }