From e3afead876c863f0d6a53c72af52b218cb067851 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Fri, 3 Jul 2020 10:40:17 -0400 Subject: [PATCH] SubGBHawk: have TotalExecutedCycles reflect run time --- .../Consoles/Nintendo/SubGBHawk/SubGBHawk.cs | 24 ++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.cs index a9d4c2c0c0..9e8b608ab8 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.cs @@ -1,4 +1,6 @@ -using BizHawk.Common; +using System; +using System.Collections.Generic; +using BizHawk.Common; using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.Nintendo.SubGBHawk @@ -10,7 +12,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SubGBHawk isReleased: true)] [ServiceNotApplicable(new[] { typeof(IDriveLight) })] public partial class SubGBHawk : IEmulator, IStatable, IInputPollable, - ISettable + ISettable, IDebuggable { [CoreConstructor(new[] { "GB", "GBC" })] public SubGBHawk(CoreComm comm, GameInfo game, byte[] rom, /*string gameDbFn,*/ object settings, object syncSettings) @@ -35,7 +37,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.SubGBHawk ser.Register(_GBCore.ServiceProvider.GetService()); ser.Register(_GBCore.ServiceProvider.GetService()); ser.Register(_GBCore.ServiceProvider.GetService()); - ser.Register(_GBCore.ServiceProvider.GetService()); ser.Register(_GBCore.ServiceProvider.GetService()); ser.Register(_GBCore.ServiceProvider.GetService()); @@ -60,5 +61,22 @@ namespace BizHawk.Emulation.Cores.Nintendo.SubGBHawk public GBHawk.GBHawk.GBSyncSettings GetSyncSettings() => _GBCore.GetSyncSettings(); public PutSettingsDirtyBits PutSettings(GBHawk.GBHawk.GBSettings o) => _GBCore.PutSettings(o); public PutSettingsDirtyBits PutSyncSettings(GBHawk.GBHawk.GBSyncSettings o) => _GBCore.PutSyncSettings(o); + + + // IDebuggable, declare here so TotalexecutedCycles can reflect the cycle count of the movie + public IDictionary GetCpuFlagsAndRegisters() + => _GBCore.cpu.GetCpuFlagsAndRegisters(); + + public void SetCpuRegister(string register, int value) + => _GBCore.cpu.SetCpuRegister(register, value); + + public IMemoryCallbackSystem MemoryCallbacks => _GBCore.MemoryCallbacks; + + public bool CanStep(StepType type) => false; + + [FeatureNotImplemented] + public void Step(StepType type) => throw new NotImplementedException(); + + public long TotalExecutedCycles => CycleCount; } }