From 923b5e25434bbbb32b8bee33c669674daed73ddb Mon Sep 17 00:00:00 2001 From: goyuken Date: Fri, 5 Dec 2014 02:43:16 +0000 Subject: [PATCH] dual gameboy memorycallback stuff --- .../Consoles/Nintendo/Gameboy/Gambatte.cs | 11 ++++++++++- .../Consoles/Nintendo/Gameboy/GambatteLink.cs | 10 ++++------ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index 5ce5f16eb1..544c765f80 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -641,9 +641,18 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy LibGambatte.MemoryCallback writecb; LibGambatte.MemoryCallback execcb; - private readonly MemoryCallbackSystem _memorycallbacks = new MemoryCallbackSystem(); + private MemoryCallbackSystem _memorycallbacks = new MemoryCallbackSystem(); public IMemoryCallbackSystem MemoryCallbacks { get { return _memorycallbacks; } } + /// + /// for use in dual core + /// + /// + public void ConnectMemoryCallbackSystem(MemoryCallbackSystem mcs) + { + _memorycallbacks = mcs; + } + void InitMemoryCallbacks() { readcb = (addr) => MemoryCallbacks.CallRead(addr); diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs index 94bcc68076..2e67e74c55 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs @@ -60,6 +60,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy R.Controller = RCont; L.ConnectInputCallbackSystem(_inputCallbacks); R.ConnectInputCallbackSystem(_inputCallbacks); + L.ConnectMemoryCallbackSystem(_memorycallbacks); + R.ConnectMemoryCallbackSystem(_memorycallbacks); comm.VsyncNum = L.CoreComm.VsyncNum; comm.VsyncDen = L.CoreComm.VsyncDen; @@ -86,6 +88,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy private InputCallbackSystem _inputCallbacks = new InputCallbackSystem(); public IInputCallbackSystem InputCallbacks { get { return _inputCallbacks; } } + private readonly MemoryCallbackSystem _memorycallbacks = new MemoryCallbackSystem(); + public IMemoryCallbackSystem MemoryCallbacks { get { return _memorycallbacks; } } public ITracer Tracer { @@ -93,12 +97,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy get { throw new NotImplementedException(); } } - public IMemoryCallbackSystem MemoryCallbacks - { - [FeatureNotImplemented] - get { throw new NotImplementedException(); } - } - public IVideoProvider VideoProvider { get { return this; } } public ISoundProvider SoundProvider { get { return null; } } public ISyncSoundProvider SyncSoundProvider { get { return this; } }