diff --git a/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj b/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj index c9919ebed4..af786ec123 100644 --- a/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj +++ b/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj @@ -91,6 +91,7 @@ + diff --git a/BizHawk.Emulation.Common/Interfaces/Services/ICycleTiming.cs b/BizHawk.Emulation.Common/Interfaces/Services/ICycleTiming.cs new file mode 100644 index 0000000000..5fd648e9f7 --- /dev/null +++ b/BizHawk.Emulation.Common/Interfaces/Services/ICycleTiming.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BizHawk.Emulation.Common +{ + public interface ICycleTiming + { + /// + /// Total elapsed emulation time relative to + /// + long CycleCount { get; } + /// + /// Clock Rate in hz for + /// + double ClockRate { get; } + } +} diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index 864cdd856d..3f67fa612e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -19,7 +19,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy [ServiceNotApplicable(typeof(IDriveLight), typeof(IDriveLight))] public partial class Gameboy : IEmulator, IVideoProvider, ISoundProvider, ISaveRam, IStatable, IInputPollable, ICodeDataLogger, IBoardInfo, IDebuggable, ISettable, - IGameboyCommon + IGameboyCommon, ICycleTiming { [CoreConstructor("GB", "GBC")] public Gameboy(CoreComm comm, GameInfo game, byte[] file, object settings, object syncSettings, bool deterministic) @@ -253,7 +253,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy /// number of extra cycles we overran in the last frame /// private uint frameOverflow = 0; - public ulong CycleCount => _cycleCount; + public long CycleCount => (long)_cycleCount; + public double ClockRate => TICKSPERSECOND; #endregion