Update Intellivision.IEmulator.cs
This commit is contained in:
parent
aa44cf6f02
commit
a01f7c3502
|
@ -87,7 +87,7 @@ namespace BizHawk.Emulation.Cores.Intellivision
|
||||||
_stic.active_display = false;
|
_stic.active_display = false;
|
||||||
_stic.Sr1 = false;
|
_stic.Sr1 = false;
|
||||||
|
|
||||||
_cpu.PendingCycles = (2900 + _cpu.GetPendingCycles());
|
_cpu.PendingCycles = (3000 + _cpu.GetPendingCycles());
|
||||||
|
|
||||||
while (_cpu.GetPendingCycles() > 0)
|
while (_cpu.GetPendingCycles() > 0)
|
||||||
{
|
{
|
||||||
|
@ -97,7 +97,7 @@ namespace BizHawk.Emulation.Cores.Intellivision
|
||||||
}
|
}
|
||||||
|
|
||||||
// vblank phase 2
|
// vblank phase 2
|
||||||
_cpu.PendingCycles = (891 + _cpu.GetPendingCycles());
|
_cpu.PendingCycles = (791 + _cpu.GetPendingCycles());
|
||||||
_stic.in_vb_1 = false;
|
_stic.in_vb_1 = false;
|
||||||
|
|
||||||
while (_cpu.GetPendingCycles() > 0)
|
while (_cpu.GetPendingCycles() > 0)
|
||||||
|
|
Loading…
Reference in New Issue