Intellivision add Power/Reset

Also fix Aspect ratio
This commit is contained in:
alyosha-tas 2017-03-05 18:45:32 -05:00 committed by GitHub
parent 2526f8c7b9
commit ae27d0ae94
4 changed files with 41 additions and 1 deletions

View File

@ -111,6 +111,13 @@ namespace BizHawk.Emulation.Cores.Intellivision
if (islag)
lagcount++;
if (Controller.IsPressed("Power"))
HardReset();
if (Controller.IsPressed("Reset"))
SoftReset();
}
private int _frame;

View File

@ -29,6 +29,8 @@ namespace BizHawk.Emulation.Cores.Intellivision
this.SyncSettings = (IntvSyncSettings)SyncSettings ?? new IntvSyncSettings();
ControllerDeck = new IntellivisionControllerDeck(this.SyncSettings.Port1, this.SyncSettings.Port2);
ControllerDefinition.BoolButtons.Add("Power");
ControllerDefinition.BoolButtons.Add("Reset");
_cart = new Intellicart();
if (_cart.Parse(_rom) == -1)
@ -142,5 +144,33 @@ namespace BizHawk.Emulation.Cores.Intellivision
ushort port2 = ControllerDeck.ReadPort2(Controller);
_psg.Register[14] = (ushort)(0xFF - port2);
}
void HardReset()
{
_cpu.Reset();
_stic.Reset();
_psg.Reset();
Connect();
ScratchpadRam = new byte[240];
SystemRam = new ushort[352];
_cart = new Intellicart();
if (_cart.Parse(_rom) == -1)
{
_cart = new Cartridge();
_cart.Parse(_rom);
}
}
void SoftReset()
{
_cpu.Reset();
_stic.Reset();
_psg.Reset();
Connect();
}
}
}

View File

@ -18,7 +18,7 @@ namespace BizHawk.Emulation.Cores.Intellivision
for (int i=0;i<16;i++)
{
Register[i] = 0xFFFF;
Register[i] = 0x0000;
}
sync_psg_state();
DiscardSamples();

View File

@ -88,8 +88,11 @@ namespace BizHawk.Emulation.Cores.Intellivision
for (int i=0;i<64;i++)
{
Register[i] = 0;
write_reg(i, 0, false);
}
ColorSP = 0x0028;
}
public bool GetSr1()