2012-07-08 04:20:53 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Collections.Generic;
|
2013-11-04 01:06:36 +00:00
|
|
|
|
|
|
|
|
|
using BizHawk.Emulation.Common;
|
2014-01-22 01:14:36 +00:00
|
|
|
|
using BizHawk.Emulation.Cores.Components.CP1610;
|
2012-07-08 04:20:53 +00:00
|
|
|
|
|
2013-11-13 03:32:25 +00:00
|
|
|
|
namespace BizHawk.Emulation.Cores.Intellivision
|
2012-07-08 04:20:53 +00:00
|
|
|
|
{
|
2014-04-25 01:19:57 +00:00
|
|
|
|
[CoreAttributes(
|
|
|
|
|
"IntelliHawk",
|
|
|
|
|
"BrandonE",
|
|
|
|
|
isPorted: false,
|
|
|
|
|
isReleased: false
|
|
|
|
|
)]
|
2016-12-08 19:06:20 +00:00
|
|
|
|
[ServiceNotApplicable(typeof(ISaveRam), typeof(IDriveLight))]
|
2016-12-20 01:20:10 +00:00
|
|
|
|
public sealed partial class Intellivision : IEmulator, IStatable, IInputPollable, ISettable<Intellivision.IntvSettings, Intellivision.IntvSyncSettings>
|
2012-07-15 08:38:50 +00:00
|
|
|
|
{
|
2015-06-18 16:44:30 +00:00
|
|
|
|
[CoreConstructor("INTV")]
|
2016-12-03 23:44:25 +00:00
|
|
|
|
public Intellivision(CoreComm comm, GameInfo game, byte[] rom, object Settings, object SyncSettings)
|
2015-06-18 16:44:30 +00:00
|
|
|
|
{
|
|
|
|
|
ServiceProvider = new BasicServiceProvider(this);
|
|
|
|
|
CoreComm = comm;
|
|
|
|
|
|
|
|
|
|
_rom = rom;
|
|
|
|
|
_gameInfo = game;
|
2016-12-03 23:44:25 +00:00
|
|
|
|
|
|
|
|
|
this.Settings = (IntvSettings)Settings ?? new IntvSettings();
|
|
|
|
|
this.SyncSettings = (IntvSyncSettings)SyncSettings ?? new IntvSyncSettings();
|
|
|
|
|
|
|
|
|
|
ControllerDeck = new IntellivisionControllerDeck(this.SyncSettings.Port1, this.SyncSettings.Port2);
|
|
|
|
|
|
2015-06-18 16:44:30 +00:00
|
|
|
|
_cart = new Intellicart();
|
|
|
|
|
if (_cart.Parse(_rom) == -1)
|
|
|
|
|
{
|
|
|
|
|
_cart = new Cartridge();
|
|
|
|
|
_cart.Parse(_rom);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_cpu = new CP1610();
|
|
|
|
|
_cpu.ReadMemory = ReadMemory;
|
|
|
|
|
_cpu.WriteMemory = WriteMemory;
|
|
|
|
|
_cpu.Reset();
|
|
|
|
|
|
|
|
|
|
_stic = new STIC();
|
|
|
|
|
_stic.ReadMemory = ReadMemory;
|
|
|
|
|
_stic.WriteMemory = WriteMemory;
|
|
|
|
|
_stic.Reset();
|
|
|
|
|
(ServiceProvider as BasicServiceProvider).Register<IVideoProvider>(_stic);
|
|
|
|
|
|
|
|
|
|
_psg = new PSG();
|
2016-12-10 04:00:40 +00:00
|
|
|
|
_psg.Reset();
|
2015-06-18 16:44:30 +00:00
|
|
|
|
_psg.ReadMemory = ReadMemory;
|
|
|
|
|
_psg.WriteMemory = WriteMemory;
|
2016-12-13 17:26:56 +00:00
|
|
|
|
(ServiceProvider as BasicServiceProvider).Register<ISoundProvider>(_psg);
|
2015-06-18 16:44:30 +00:00
|
|
|
|
|
|
|
|
|
Connect();
|
|
|
|
|
|
2016-11-12 21:09:51 +00:00
|
|
|
|
//_cpu.LogData();
|
2015-06-18 16:44:30 +00:00
|
|
|
|
|
|
|
|
|
LoadExecutiveRom(CoreComm.CoreFileProvider.GetFirmware("INTV", "EROM", true, "Executive ROM is required."));
|
|
|
|
|
LoadGraphicsRom(CoreComm.CoreFileProvider.GetFirmware("INTV", "GROM", true, "Graphics ROM is required."));
|
2016-11-11 22:17:35 +00:00
|
|
|
|
|
|
|
|
|
Tracer = new TraceBuffer { Header = _cpu.TraceHeader };
|
|
|
|
|
(ServiceProvider as BasicServiceProvider).Register<ITraceable>(Tracer);
|
2016-11-12 20:08:05 +00:00
|
|
|
|
|
|
|
|
|
SetupMemoryDomains();
|
2015-06-18 16:44:30 +00:00
|
|
|
|
}
|
2012-07-15 08:38:50 +00:00
|
|
|
|
|
2016-12-03 23:44:25 +00:00
|
|
|
|
public IntellivisionControllerDeck ControllerDeck { get; private set; }
|
|
|
|
|
|
2016-11-11 22:17:35 +00:00
|
|
|
|
private ITraceable Tracer { get; set; }
|
|
|
|
|
|
2016-12-20 01:20:10 +00:00
|
|
|
|
public int LagCount
|
|
|
|
|
{
|
2016-12-27 21:31:33 +00:00
|
|
|
|
get {return lagcount;}
|
2016-12-20 01:20:10 +00:00
|
|
|
|
|
|
|
|
|
set{}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsLagFrame
|
|
|
|
|
{
|
2016-12-27 21:31:33 +00:00
|
|
|
|
get {return islag;}
|
2016-12-20 01:20:10 +00:00
|
|
|
|
|
|
|
|
|
set {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IInputCallbackSystem InputCallbacks
|
|
|
|
|
{
|
|
|
|
|
get { return _inputCallbacks; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private readonly InputCallbackSystem _inputCallbacks = new InputCallbackSystem();
|
|
|
|
|
|
2015-06-18 16:44:30 +00:00
|
|
|
|
private byte[] _rom;
|
|
|
|
|
private GameInfo _gameInfo;
|
|
|
|
|
|
|
|
|
|
private CP1610 _cpu;
|
|
|
|
|
private ICart _cart;
|
|
|
|
|
private STIC _stic;
|
|
|
|
|
private PSG _psg;
|
2012-07-15 08:38:50 +00:00
|
|
|
|
|
2012-08-14 03:58:11 +00:00
|
|
|
|
public void Connect()
|
2012-08-13 08:10:15 +00:00
|
|
|
|
{
|
2015-06-18 16:44:30 +00:00
|
|
|
|
_cpu.SetIntRM(_stic.GetSr1());
|
|
|
|
|
_cpu.SetBusRq(_stic.GetSr2());
|
|
|
|
|
_stic.SetSst(_cpu.GetBusAk());
|
2012-08-13 08:10:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-05 23:07:48 +00:00
|
|
|
|
public void LoadExecutiveRom(byte[] erom)
|
2012-07-19 00:05:08 +00:00
|
|
|
|
{
|
2012-12-17 04:23:59 +00:00
|
|
|
|
if (erom.Length != 8192)
|
|
|
|
|
{
|
|
|
|
|
throw new ApplicationException("EROM file is wrong size - expected 8192 bytes");
|
|
|
|
|
}
|
2015-06-18 16:44:30 +00:00
|
|
|
|
|
2012-07-19 00:05:08 +00:00
|
|
|
|
int index = 0;
|
|
|
|
|
// Combine every two bytes into a word.
|
|
|
|
|
while (index + 1 < erom.Length)
|
2012-12-17 04:23:59 +00:00
|
|
|
|
{
|
2012-08-10 20:40:34 +00:00
|
|
|
|
ExecutiveRom[index / 2] = (ushort)((erom[index++] << 8) | erom[index++]);
|
2012-12-17 04:23:59 +00:00
|
|
|
|
}
|
2012-07-19 00:05:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-05 23:07:48 +00:00
|
|
|
|
public void LoadGraphicsRom(byte[] grom)
|
2012-07-19 00:05:08 +00:00
|
|
|
|
{
|
2015-02-05 23:07:48 +00:00
|
|
|
|
if (grom.Length != 2048)
|
2012-12-17 04:23:59 +00:00
|
|
|
|
{
|
|
|
|
|
throw new ApplicationException("GROM file is wrong size - expected 2048 bytes");
|
|
|
|
|
}
|
2012-07-15 08:38:50 +00:00
|
|
|
|
|
2015-06-18 16:44:30 +00:00
|
|
|
|
GraphicsRom = grom;
|
2012-07-15 08:38:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-03 23:44:25 +00:00
|
|
|
|
public void get_controller_state()
|
|
|
|
|
{
|
2016-12-20 01:20:10 +00:00
|
|
|
|
InputCallbacks.Call();
|
|
|
|
|
|
2016-12-03 23:44:25 +00:00
|
|
|
|
ushort port1 = ControllerDeck.ReadPort1(Controller);
|
2016-12-10 23:56:35 +00:00
|
|
|
|
_psg.Register[15] = (ushort)(0xFF - port1);
|
2016-12-03 23:44:25 +00:00
|
|
|
|
|
|
|
|
|
ushort port2 = ControllerDeck.ReadPort2(Controller);
|
2016-12-10 23:56:35 +00:00
|
|
|
|
_psg.Register[14] = (ushort)(0xFF - port2);
|
2016-12-03 23:44:25 +00:00
|
|
|
|
}
|
2012-07-15 08:38:50 +00:00
|
|
|
|
}
|
2016-11-12 21:09:51 +00:00
|
|
|
|
}
|