diff --git a/BizHawk.Emulation.Common/Interfaces/IStatable.cs b/BizHawk.Emulation.Common/Interfaces/IStatable.cs
index 4c05dffe56..9b5302c8f6 100644
--- a/BizHawk.Emulation.Common/Interfaces/IStatable.cs
+++ b/BizHawk.Emulation.Common/Interfaces/IStatable.cs
@@ -7,6 +7,11 @@ namespace BizHawk.Emulation.Common
///
public interface IStatable : IEmulatorService, IEmulator
{
+ ///
+ /// true if the core would rather give a binary savestate than a text one. both must function regardless
+ ///
+ bool BinarySaveStatesPreferred { get; }
+
void SaveStateText(TextWriter writer);
void LoadStateText(TextReader reader);
@@ -18,10 +23,5 @@ namespace BizHawk.Emulation.Common
///
/// you may NOT modify this. if you call SaveStateBinary() again with the same core, the old data MAY be overwritten.
byte[] SaveStateBinary();
-
- ///
- /// true if the core would rather give a binary savestate than a text one. both must function regardless
- ///
- bool BinarySaveStatesPreferred { get; }
}
}
diff --git a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj
index 44c76bba23..d3072de511 100644
--- a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj
+++ b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj
@@ -242,6 +242,21 @@
+
+ ColecoVision.cs
+
+
+ ColecoVision.cs
+
+
+ ColecoVision.cs
+
+
+ ColecoVision.cs
+
+
+ ColecoVision.cs
+
@@ -278,7 +293,7 @@
N64.cs
- N64.cs
+ N64.cs
diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IDebuggable.cs
new file mode 100644
index 0000000000..c37722d20e
--- /dev/null
+++ b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IDebuggable.cs
@@ -0,0 +1,136 @@
+using System;
+using System.Collections.Generic;
+
+using BizHawk.Common.NumberExtensions;
+using BizHawk.Emulation.Common;
+
+
+namespace BizHawk.Emulation.Cores.ColecoVision
+{
+ public partial class ColecoVision : IDebuggable
+ {
+ public IDictionary GetCpuFlagsAndRegisters()
+ {
+ return new Dictionary
+ {
+ { "A", Cpu.RegisterA },
+ { "AF", Cpu.RegisterAF },
+ { "B", Cpu.RegisterB },
+ { "BC", Cpu.RegisterBC },
+ { "C", Cpu.RegisterC },
+ { "D", Cpu.RegisterD },
+ { "DE", Cpu.RegisterDE },
+ { "E", Cpu.RegisterE },
+ { "F", Cpu.RegisterF },
+ { "H", Cpu.RegisterH },
+ { "HL", Cpu.RegisterHL },
+ { "I", Cpu.RegisterI },
+ { "IX", Cpu.RegisterIX },
+ { "IY", Cpu.RegisterIY },
+ { "L", Cpu.RegisterL },
+ { "PC", Cpu.RegisterPC },
+ { "R", Cpu.RegisterR },
+ { "Shadow AF", Cpu.RegisterShadowAF },
+ { "Shadow BC", Cpu.RegisterShadowBC },
+ { "Shadow DE", Cpu.RegisterShadowDE },
+ { "Shadow HL", Cpu.RegisterShadowHL },
+ { "SP", Cpu.RegisterSP },
+ { "Flag C", Cpu.RegisterF.Bit(0) ? 1 : 0 },
+ { "Flag N", Cpu.RegisterF.Bit(1) ? 1 : 0 },
+ { "Flag P/V", Cpu.RegisterF.Bit(2) ? 1 : 0 },
+ { "Flag 3rd", Cpu.RegisterF.Bit(3) ? 1 : 0 },
+ { "Flag H", Cpu.RegisterF.Bit(4) ? 1 : 0 },
+ { "Flag 5th", Cpu.RegisterF.Bit(5) ? 1 : 0 },
+ { "Flag Z", Cpu.RegisterF.Bit(6) ? 1 : 0 },
+ { "Flag S", Cpu.RegisterF.Bit(7) ? 1 : 0 }
+ };
+ }
+
+ public void SetCpuRegister(string register, int value)
+ {
+ switch (register)
+ {
+ default:
+ throw new InvalidOperationException();
+ case "A":
+ Cpu.RegisterA = (byte)value;
+ break;
+ case "AF":
+ Cpu.RegisterAF = (byte)value;
+ break;
+ case "B":
+ Cpu.RegisterB = (byte)value;
+ break;
+ case "BC":
+ Cpu.RegisterBC = (byte)value;
+ break;
+ case "C":
+ Cpu.RegisterC = (byte)value;
+ break;
+ case "D":
+ Cpu.RegisterD = (byte)value;
+ break;
+ case "DE":
+ Cpu.RegisterDE = (byte)value;
+ break;
+ case "E":
+ Cpu.RegisterE = (byte)value;
+ break;
+ case "F":
+ Cpu.RegisterF = (byte)value;
+ break;
+ case "H":
+ Cpu.RegisterH = (byte)value;
+ break;
+ case "HL":
+ Cpu.RegisterHL = (byte)value;
+ break;
+ case "I":
+ Cpu.RegisterI = (byte)value;
+ break;
+ case "IX":
+ Cpu.RegisterIX = (byte)value;
+ break;
+ case "IY":
+ Cpu.RegisterIY = (byte)value;
+ break;
+ case "L":
+ Cpu.RegisterL = (byte)value;
+ break;
+ case "PC":
+ Cpu.RegisterPC = (ushort)value;
+ break;
+ case "R":
+ Cpu.RegisterR = (byte)value;
+ break;
+ case "Shadow AF":
+ Cpu.RegisterShadowAF = (byte)value;
+ break;
+ case "Shadow BC":
+ Cpu.RegisterShadowBC = (byte)value;
+ break;
+ case "Shadow DE":
+ Cpu.RegisterShadowDE = (byte)value;
+ break;
+ case "Shadow HL":
+ Cpu.RegisterShadowHL = (byte)value;
+ break;
+ case "SP":
+ Cpu.RegisterSP = (byte)value;
+ break;
+ }
+ }
+
+ public ITracer Tracer
+ {
+ [FeatureNotImplemented]
+ get { throw new NotImplementedException(); }
+ }
+
+ public IMemoryCallbackSystem MemoryCallbacks
+ {
+ [FeatureNotImplemented]
+ get { throw new NotImplementedException(); }
+ }
+ }
+}
diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IInputPollable.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IInputPollable.cs
new file mode 100644
index 0000000000..bfac04bd55
--- /dev/null
+++ b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IInputPollable.cs
@@ -0,0 +1,28 @@
+using System;
+using BizHawk.Emulation.Common;
+
+namespace BizHawk.Emulation.Cores.ColecoVision
+{
+ public partial class ColecoVision : IInputPollable
+ {
+ public int LagCount
+ {
+ get { return _lagCount; }
+ set { _lagCount = value; }
+ }
+
+ public bool IsLagFrame
+ {
+ get { return _isLag; }
+ }
+
+ public IInputCallbackSystem InputCallbacks
+ {
+ [FeatureNotImplemented]
+ get { throw new NotImplementedException(); }
+ }
+
+ private int _lagCount = 0;
+ private bool _isLag = true;
+ }
+}
diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IMemoryDomains.cs
new file mode 100644
index 0000000000..d8516bae1b
--- /dev/null
+++ b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IMemoryDomains.cs
@@ -0,0 +1,52 @@
+using System;
+using System.Collections.Generic;
+
+using BizHawk.Emulation.Common;
+
+namespace BizHawk.Emulation.Cores.ColecoVision
+{
+ public partial class ColecoVision : IMemoryDomains
+ {
+ public MemoryDomainList MemoryDomains
+ {
+ get { return memoryDomains; }
+ }
+
+ private MemoryDomainList memoryDomains;
+
+ private void SetupMemoryDomains()
+ {
+ var domains = new List(3);
+ var MainMemoryDomain = new MemoryDomain("Main RAM", Ram.Length, MemoryDomain.Endian.Little,
+ addr => Ram[addr],
+ (addr, value) => Ram[addr] = value);
+ var VRamDomain = new MemoryDomain("Video RAM", VDP.VRAM.Length, MemoryDomain.Endian.Little,
+ addr => VDP.VRAM[addr],
+ (addr, value) => VDP.VRAM[addr] = value);
+ var SystemBusDomain = new MemoryDomain("System Bus", 0x10000, MemoryDomain.Endian.Little,
+ (addr) =>
+ {
+ if (addr < 0 || addr >= 65536)
+ {
+ throw new ArgumentOutOfRangeException();
+ }
+
+ return Cpu.ReadMemory((ushort)addr);
+ },
+ (addr, value) =>
+ {
+ if (addr < 0 || addr >= 65536)
+ {
+ throw new ArgumentOutOfRangeException();
+ }
+
+ Cpu.WriteMemory((ushort)addr, value);
+ });
+
+ domains.Add(MainMemoryDomain);
+ domains.Add(VRamDomain);
+ domains.Add(SystemBusDomain);
+ memoryDomains = new MemoryDomainList(domains);
+ }
+ }
+}
diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.ISettable.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.ISettable.cs
new file mode 100644
index 0000000000..29297e0964
--- /dev/null
+++ b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.ISettable.cs
@@ -0,0 +1,41 @@
+using BizHawk.Emulation.Common;
+
+namespace BizHawk.Emulation.Cores.ColecoVision
+{
+ public partial class ColecoVision : ISettable