From 85a481f93fc9a89153462df15649287a70af0cef Mon Sep 17 00:00:00 2001 From: 100thCoin Date: Sat, 15 Apr 2023 14:24:27 -0400 Subject: [PATCH] Nes.Core now updates the DataBus in WriteMemory() (#3633) * Nes.Core now updates the DataBus in WriteMemory() This will fix open bus execution following write instructions. * Properly formatted changes in previous commit I have addressed the requested changes. --- src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs index 54a678e2fd..cfa279c862 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs @@ -1149,6 +1149,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES uint flags = (uint)(MemoryCallbackFlags.CPUZero | MemoryCallbackFlags.AccessWrite | MemoryCallbackFlags.SizeByte); MemoryCallbacks.CallMemoryCallbacks(addr, value, flags, "System Bus"); } + + DB = value; } // the palette for each VS game needs to be chosen explicitly since there are 6 different ones.