From 2d1a43dc6560fc3eaa25973c34c39b125c9980e9 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 7 Dec 2014 18:53:56 +0000 Subject: [PATCH] MemoryCallbackSystem - simplify by having a single Add method with a MemoryCallbackType parameter, and some simplifying of client code as a result --- .../lua/EmuLuaLibrary.Events.cs | 6 ++-- .../tools/Atari2600/AddBreakpointDialog.cs | 16 ++++----- .../tools/Atari2600/Atari2600Debugger.cs | 19 +++------- .../tools/Debugger/Breakpoint.cs | 18 +++++----- .../MemoryCallbackSystem.cs | 36 +++++++++++++++---- .../Interfaces/IMemoryCallbackSystem.cs | 24 +++++-------- .../CPUs/HuC6280/Execute.cs | 2 +- BizHawk.Emulation.Cores/Calculator/TI83.cs | 4 +-- .../Consoles/Atari/2600/Atari2600.Core.cs | 6 ++-- .../Consoles/Nintendo/GBA/VBANext.cs | 6 ++-- .../Consoles/Nintendo/Gameboy/Gambatte.cs | 6 ++-- .../Consoles/Nintendo/N64/N64.IDebuggable.cs | 4 +-- .../Consoles/Nintendo/NES/Core.cs | 6 ++-- .../Consoles/Nintendo/SNES/LibsnesCore.cs | 6 ++-- .../Consoles/Sega/SMS/MemoryMap.ExtRam.cs | 4 +-- .../Consoles/Sega/SMS/MemoryMap.Sega.cs | 4 +-- .../Consoles/Sega/gpgx/GPGX.cs | 6 ++-- .../Consoles/WonderSwan/WonderSwan.cs | 6 ++-- 18 files changed, 91 insertions(+), 88 deletions(-) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs index 244c6c30d5..7b898be94f 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs @@ -206,7 +206,7 @@ namespace BizHawk.Client.Common var nlf = new NamedLuaFunction(luaf, "OnMemoryExecute", LogOutputCallback, CurrentThread, name); _luaFunctions.Add(nlf); - Global.Emulator.AsDebuggable().MemoryCallbacks.AddExecute(nlf.Callback, address); + Global.Emulator.AsDebuggable().MemoryCallbacks.Add(MemoryCallbackType.Execute, nlf.Callback, address); return nlf.Guid.ToString(); } else @@ -226,7 +226,7 @@ namespace BizHawk.Client.Common { var nlf = new NamedLuaFunction(luaf, "OnMemoryRead", LogOutputCallback, CurrentThread, name); _luaFunctions.Add(nlf); - Global.Emulator.AsDebuggable().MemoryCallbacks.AddRead(nlf.Callback, address); + Global.Emulator.AsDebuggable().MemoryCallbacks.Add(MemoryCallbackType.Read, nlf.Callback, address); return nlf.Guid.ToString(); } else @@ -246,7 +246,7 @@ namespace BizHawk.Client.Common { var nlf = new NamedLuaFunction(luaf, "OnMemoryWrite", LogOutputCallback, CurrentThread, name); _luaFunctions.Add(nlf); - Global.Emulator.AsDebuggable().MemoryCallbacks.AddWrite(nlf.Callback, address); + Global.Emulator.AsDebuggable().MemoryCallbacks.Add(MemoryCallbackType.Write, nlf.Callback, address); return nlf.Guid.ToString(); } else diff --git a/BizHawk.Client.EmuHawk/tools/Atari2600/AddBreakpointDialog.cs b/BizHawk.Client.EmuHawk/tools/Atari2600/AddBreakpointDialog.cs index 2191fed9f0..a148e4ddb6 100644 --- a/BizHawk.Client.EmuHawk/tools/Atari2600/AddBreakpointDialog.cs +++ b/BizHawk.Client.EmuHawk/tools/Atari2600/AddBreakpointDialog.cs @@ -7,6 +7,8 @@ using System.Linq; using System.Text; using System.Windows.Forms; +using BizHawk.Emulation.Common; + namespace BizHawk.Client.EmuHawk { public partial class AddBreakpointDialog : Form @@ -16,26 +18,26 @@ namespace BizHawk.Client.EmuHawk InitializeComponent(); } - public BreakpointType BreakType + public MemoryCallbackType BreakType { get { if (ReadRadio.Checked) { - return BreakpointType.Read; + return MemoryCallbackType.Read; } if (WriteRadio.Checked) { - return BreakpointType.Write; + return MemoryCallbackType.Write; } if (ExecuteRadio.Checked) { - return BreakpointType.Execute; + return MemoryCallbackType.Execute; } - return BreakpointType.Read; + return MemoryCallbackType.Read; } } @@ -54,9 +56,5 @@ namespace BizHawk.Client.EmuHawk { } - - } - - public enum BreakpointType { Read, Write, Execute } } diff --git a/BizHawk.Client.EmuHawk/tools/Atari2600/Atari2600Debugger.cs b/BizHawk.Client.EmuHawk/tools/Atari2600/Atari2600Debugger.cs index 92a792f9b4..8043723a01 100644 --- a/BizHawk.Client.EmuHawk/tools/Atari2600/Atari2600Debugger.cs +++ b/BizHawk.Client.EmuHawk/tools/Atari2600/Atari2600Debugger.cs @@ -446,7 +446,7 @@ namespace BizHawk.Client.EmuHawk { public Action Callback { get; set; } - public void Add(Atari2600 core, uint address, BreakpointType type) + public void Add(Atari2600 core, uint address, MemoryCallbackType type) { Add(new AtariBreakpoint(core, Callback, address, type)); } @@ -457,7 +457,7 @@ namespace BizHawk.Client.EmuHawk private bool _active; private readonly Atari2600 _core; - public AtariBreakpoint(Atari2600 core, Action callBack, uint address, BreakpointType type, bool enabled = true) + public AtariBreakpoint(Atari2600 core, Action callBack, uint address, MemoryCallbackType type, bool enabled = true) { _core = core; @@ -473,7 +473,7 @@ namespace BizHawk.Client.EmuHawk public Action Callback { get; set; } public uint Address { get; set; } - public BreakpointType Type { get; set; } + public MemoryCallbackType Type { get; set; } public bool Active { @@ -500,18 +500,7 @@ namespace BizHawk.Client.EmuHawk private void AddCallback() { - switch (Type) - { - case BreakpointType.Read: - _core.MemoryCallbacks.AddRead(Callback, Address); - break; - case BreakpointType.Write: - _core.MemoryCallbacks.AddWrite(Callback, Address); - break; - case BreakpointType.Execute: - _core.MemoryCallbacks.AddExecute(Callback, Address); - break; - } + _core.MemoryCallbacks.Add(Type, Callback, Address); } private void RemoveCallback() diff --git a/BizHawk.Client.EmuHawk/tools/Debugger/Breakpoint.cs b/BizHawk.Client.EmuHawk/tools/Debugger/Breakpoint.cs index 2e1b6c0351..a73a837923 100644 --- a/BizHawk.Client.EmuHawk/tools/Debugger/Breakpoint.cs +++ b/BizHawk.Client.EmuHawk/tools/Debugger/Breakpoint.cs @@ -10,7 +10,7 @@ namespace BizHawk.Client.EmuHawk { public Action Callback { get; set; } - public void Add(IDebuggable core, uint address, BreakpointType type) + public void Add(IDebuggable core, uint address, MemoryCallbackType type) { Add(new Breakpoint(core, Callback, address, type)); } @@ -33,7 +33,7 @@ namespace BizHawk.Client.EmuHawk private bool _active; private readonly IDebuggable _core; - public Breakpoint(IDebuggable core, Action callBack, uint address, BreakpointType type, bool enabled = true) + public Breakpoint(IDebuggable core, Action callBack, uint address, MemoryCallbackType type, bool enabled = true) { _core = core; @@ -49,7 +49,7 @@ namespace BizHawk.Client.EmuHawk public Action Callback { get; set; } public uint Address { get; set; } - public BreakpointType Type { get; set; } + public MemoryCallbackType Type { get; set; } public bool Active { @@ -78,14 +78,14 @@ namespace BizHawk.Client.EmuHawk { switch (Type) { - case BreakpointType.Read: - _core.MemoryCallbacks.AddRead(Callback, Address); + case MemoryCallbackType.Read: + _core.MemoryCallbacks.Add(MemoryCallbackType.Read, Callback, Address); break; - case BreakpointType.Write: - _core.MemoryCallbacks.AddWrite(Callback, Address); + case MemoryCallbackType.Write: + _core.MemoryCallbacks.Add(MemoryCallbackType.Write, Callback, Address); break; - case BreakpointType.Execute: - _core.MemoryCallbacks.AddExecute(Callback, Address); + case MemoryCallbackType.Execute: + _core.MemoryCallbacks.Add(MemoryCallbackType.Execute, Callback, Address); break; } } diff --git a/BizHawk.Emulation.Common/Base Implementations/MemoryCallbackSystem.cs b/BizHawk.Emulation.Common/Base Implementations/MemoryCallbackSystem.cs index e05f459e47..4790368313 100644 --- a/BizHawk.Emulation.Common/Base Implementations/MemoryCallbackSystem.cs +++ b/BizHawk.Emulation.Common/Base Implementations/MemoryCallbackSystem.cs @@ -16,7 +16,31 @@ namespace BizHawk.Emulation.Common private readonly List _executes = new List(); private readonly List _execAddrs = new List(); - public void AddRead(Action function, uint? addr) + public void Add(MemoryCallbackType type, Action function, uint? addr) + { + switch (type) + { + case MemoryCallbackType.Read: + AddRead(function, addr); + break; + case MemoryCallbackType.Write: + AddWrite(function, addr); + break; + case MemoryCallbackType.Execute: + if (!addr.HasValue) + { + throw new InvalidOperationException("When assigning an execute callback, an address must be specified"); + } + else + { + AddExecute(function, addr.Value); + } + + break; + } + } + + private void AddRead(Action function, uint? addr) { var hadAny = _reads.Any() || _writes.Any() || _executes.Any(); @@ -27,7 +51,7 @@ namespace BizHawk.Emulation.Common Changes(hadAny, hasAny); } - public void AddWrite(Action function, uint? addr) + private void AddWrite(Action function, uint? addr) { var hadAny = _reads.Any() || _writes.Any() || _executes.Any(); @@ -38,7 +62,7 @@ namespace BizHawk.Emulation.Common Changes(hadAny, hasAny); } - public void AddExecute(Action function, uint addr) + private void AddExecute(Action function, uint addr) { var hadAny = _reads.Any() || _writes.Any() || _executes.Any(); @@ -49,7 +73,7 @@ namespace BizHawk.Emulation.Common Changes(hadAny, hasAny); } - public void CallRead(uint addr) + public void CallReads(uint addr) { for (int i = 0; i < _reads.Count; i++) { @@ -60,7 +84,7 @@ namespace BizHawk.Emulation.Common } } - public void CallWrite(uint addr) + public void CallWrites(uint addr) { for (int i = 0; i < _writes.Count; i++) { @@ -71,7 +95,7 @@ namespace BizHawk.Emulation.Common } } - public void CallExecute(uint addr) + public void CallExecutes(uint addr) { for (int i = 0; i < _executes.Count; i++) { diff --git a/BizHawk.Emulation.Common/Interfaces/IMemoryCallbackSystem.cs b/BizHawk.Emulation.Common/Interfaces/IMemoryCallbackSystem.cs index 31aaa7d368..4e898f2cc9 100644 --- a/BizHawk.Emulation.Common/Interfaces/IMemoryCallbackSystem.cs +++ b/BizHawk.Emulation.Common/Interfaces/IMemoryCallbackSystem.cs @@ -21,36 +21,26 @@ namespace BizHawk.Emulation.Common bool HasExecutes { get; } /// - /// Adds a Read callback for the given address + /// Adds a callback for the given type to the given address /// If no address is specified the callback will be hooked to all addresses + /// Note: an execute callback can not be added without an address, else an InvalidOperationException will occur /// - void AddRead(Action function, uint? addr); - - /// - /// Adds a Write callback for the given address - /// If no address is specified the callback will be hooked to all addresses - /// - void AddWrite(Action function, uint? addr); - - /// - /// Adds an Execute callback for the given address - /// - void AddExecute(Action function, uint addr); + void Add(MemoryCallbackType type, Action function, uint? addr); /// /// Executes all Read callbacks for the given addr /// - void CallRead(uint addr); + void CallReads(uint addr); /// /// Executes all Write callbacks for the given addr /// - void CallWrite(uint addr); + void CallWrites(uint addr); /// /// Executes all Execute callbacks for the given addr /// - void CallExecute(uint addr); + void CallExecutes(uint addr); /// /// Removes the given callback from the list @@ -67,4 +57,6 @@ namespace BizHawk.Emulation.Common /// void Clear(); } + + public enum MemoryCallbackType { Read, Write, Execute } } diff --git a/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs b/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs index 0f069439bc..3b918732fa 100644 --- a/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs +++ b/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs @@ -59,7 +59,7 @@ namespace BizHawk.Emulation.Cores.Components.H6280 LagIFlag = FlagI; if (Debug) Logger(State()); - Core.MemoryCallbacks.CallExecute(PC); + Core.MemoryCallbacks.CallExecutes(PC); if (CDLLoggingActive) CDLOpcode(); byte opcode = ReadMemory(PC++); diff --git a/BizHawk.Emulation.Cores/Calculator/TI83.cs b/BizHawk.Emulation.Cores/Calculator/TI83.cs index e6dbf2754a..672dcce075 100644 --- a/BizHawk.Emulation.Cores/Calculator/TI83.cs +++ b/BizHawk.Emulation.Cores/Calculator/TI83.cs @@ -94,7 +94,7 @@ namespace BizHawk.Emulation.Cores.Calculators ret = rom[romPage * 0x4000 + addr - 0x4000]; //other rom page else ret = ram[addr - 0x8000]; - MemoryCallbacks.CallRead(addr); + MemoryCallbacks.CallReads(addr); return ret; } @@ -107,7 +107,7 @@ namespace BizHawk.Emulation.Cores.Calculators return; //other rom page else ram[addr - 0x8000] = value; - MemoryCallbacks.CallWrite(addr); + MemoryCallbacks.CallWrites(addr); } public void WriteHardware(ushort addr, byte value) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs index 9465b3b591..5813e21c16 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs @@ -108,7 +108,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 _mapper.Bit13 = addr.Bit(13); var temp = _mapper.ReadMemory((ushort)(addr & 0x1FFF)); - MemoryCallbacks.CallRead(addr); + MemoryCallbacks.CallReads(addr); return temp; } @@ -130,7 +130,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 _mapper.WriteMemory((ushort)(addr & 0x1FFF), value); - MemoryCallbacks.CallWrite(addr); + MemoryCallbacks.CallWrites(addr); } public void PokeMemory(ushort addr, byte value) @@ -140,7 +140,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 public void ExecFetch(ushort addr) { - MemoryCallbacks.CallExecute(addr); + MemoryCallbacks.CallExecutes(addr); } private static MapperBase SetMultiCartMapper(int romLength, int gameTotal) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs index 365e1957a0..588be4925c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs @@ -285,9 +285,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA void InitCallbacks() { padcb = new LibVBANext.StandardCallback(() => InputCallbacks.Call()); - fetchcb = new LibVBANext.AddressCallback((addr) => MemoryCallbacks.CallExecute(addr)); - readcb = new LibVBANext.AddressCallback((addr) => MemoryCallbacks.CallRead(addr)); - writecb = new LibVBANext.AddressCallback((addr) => MemoryCallbacks.CallWrite(addr)); + fetchcb = new LibVBANext.AddressCallback((addr) => MemoryCallbacks.CallExecutes(addr)); + readcb = new LibVBANext.AddressCallback((addr) => MemoryCallbacks.CallReads(addr)); + writecb = new LibVBANext.AddressCallback((addr) => MemoryCallbacks.CallWrites(addr)); tracecb = new LibVBANext.TraceCallback((addr, opcode) => Tracer.Put(Trace(addr, opcode))); _inputCallbacks.ActiveChanged += SyncPadCallback; _memorycallbacks.ActiveChanged += SyncMemoryCallbacks; diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index 544c765f80..31758af98a 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -655,9 +655,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy void InitMemoryCallbacks() { - readcb = (addr) => MemoryCallbacks.CallRead(addr); - writecb = (addr) => MemoryCallbacks.CallWrite(addr); - execcb = (addr) => MemoryCallbacks.CallExecute(addr); + readcb = (addr) => MemoryCallbacks.CallReads(addr); + writecb = (addr) => MemoryCallbacks.CallWrites(addr); + execcb = (addr) => MemoryCallbacks.CallExecutes(addr); _memorycallbacks.ActiveChanged += RefreshMemoryCallbacks; } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.IDebuggable.cs index b01f973138..8098979ee3 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.IDebuggable.cs @@ -81,7 +81,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64 // we RefreshMemoryCallbacks() after the triggers in case the trigger turns itself off at that point if (mcs.HasReads) { - _readcb = delegate(uint addr) { mcs.CallRead(addr); }; + _readcb = delegate(uint addr) { mcs.CallReads(addr); }; } else { @@ -90,7 +90,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64 if (mcs.HasWrites) { - _writecb = delegate(uint addr) { mcs.CallWrite(addr); }; + _writecb = delegate(uint addr) { mcs.CallWrites(addr); }; } else { diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Core.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Core.cs index 2359c2c6ec..c4be599036 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Core.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Core.cs @@ -534,7 +534,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES public void ExecFetch(ushort addr) { - MemoryCallbacks.CallExecute(addr); + MemoryCallbacks.CallExecutes(addr); } public byte ReadMemory(ushort addr) @@ -579,7 +579,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES ret = sysbus_watch[addr].ApplyGameGenie(ret); } - MemoryCallbacks.CallRead(addr); + MemoryCallbacks.CallReads(addr); DB = ret; @@ -633,7 +633,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES board.WritePRG(addr - 0x8000, value); } - MemoryCallbacks.CallWrite(addr); + MemoryCallbacks.CallWrites(addr); } } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs index 8680e6d064..ee88c3ad7d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs @@ -387,7 +387,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES void ReadHook(uint addr) { - MemoryCallbacks.CallRead(addr); + MemoryCallbacks.CallReads(addr); //we RefreshMemoryCallbacks() after the trigger in case the trigger turns itself off at that point //EDIT: for now, theres some IPC re-entrancy problem //RefreshMemoryCallbacks(); @@ -395,7 +395,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES } void ExecHook(uint addr) { - MemoryCallbacks.CallExecute(addr); + MemoryCallbacks.CallExecutes(addr); //we RefreshMemoryCallbacks() after the trigger in case the trigger turns itself off at that point //EDIT: for now, theres some IPC re-entrancy problem //RefreshMemoryCallbacks(); @@ -403,7 +403,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES } void WriteHook(uint addr, byte val) { - MemoryCallbacks.CallWrite(addr); + MemoryCallbacks.CallWrites(addr); //we RefreshMemoryCallbacks() after the trigger in case the trigger turns itself off at that point //EDIT: for now, theres some IPC re-entrancy problem //RefreshMemoryCallbacks(); diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/MemoryMap.ExtRam.cs b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/MemoryMap.ExtRam.cs index c095334328..4262cd9319 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/MemoryMap.ExtRam.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/MemoryMap.ExtRam.cs @@ -16,7 +16,7 @@ else ret = SystemRam[address & RamSizeMask]; - MemoryCallbacks.CallRead(address); + MemoryCallbacks.CallReads(address); return ret; } @@ -27,7 +27,7 @@ else if (address >= 0xC000) SystemRam[address & RamSizeMask] = value; - MemoryCallbacks.CallWrite((uint)address); + MemoryCallbacks.CallWrites((uint)address); } void InitExt2kMapper(int size) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/MemoryMap.Sega.cs b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/MemoryMap.Sega.cs index e2f352d2f1..77f253ff4c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/MemoryMap.Sega.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/MemoryMap.Sega.cs @@ -53,7 +53,7 @@ ret = SystemRam[address & RamSizeMask]; } - MemoryCallbacks.CallRead(address); + MemoryCallbacks.CallReads(address); return ret; } @@ -91,7 +91,7 @@ else if (address == 0xFFFF) RomBank2 = (byte)(value % RomBanks); return; } - MemoryCallbacks.CallWrite((uint)address); + MemoryCallbacks.CallWrites((uint)address); } void InitSegaMapper() diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs index 9034d0c730..b27815de93 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs @@ -661,9 +661,9 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx void InitMemCallbacks() { - ExecCallback = new LibGPGX.mem_cb(a => MemoryCallbacks.CallExecute(a)); - ReadCallback = new LibGPGX.mem_cb(a => MemoryCallbacks.CallRead(a)); - WriteCallback = new LibGPGX.mem_cb(a => MemoryCallbacks.CallWrite(a)); + ExecCallback = new LibGPGX.mem_cb(a => MemoryCallbacks.CallExecutes(a)); + ReadCallback = new LibGPGX.mem_cb(a => MemoryCallbacks.CallReads(a)); + WriteCallback = new LibGPGX.mem_cb(a => MemoryCallbacks.CallWrites(a)); _memoryCallbacks.ActiveChanged += RefreshMemCallbacks; } diff --git a/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs b/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs index 076208a019..03f12880ec 100644 --- a/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs +++ b/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs @@ -354,15 +354,15 @@ namespace BizHawk.Emulation.Cores.WonderSwan void ReadCallback(uint addr) { - MemoryCallbacks.CallRead(addr); + MemoryCallbacks.CallReads(addr); } void WriteCallback(uint addr) { - MemoryCallbacks.CallWrite(addr); + MemoryCallbacks.CallWrites(addr); } void ExecCallback(uint addr) { - MemoryCallbacks.CallExecute(addr); + MemoryCallbacks.CallExecutes(addr); } void ButtonCallback() {