parent
2526f8c7b9
commit
ae27d0ae94
|
@ -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;
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue