PCE: Fix a bug in the timer; fix glitch in VBlank interrupt handling (fixing intro in Dungeon Explorer)
This commit is contained in:
parent
53703fdb04
commit
0a354c2748
|
@ -2125,10 +2125,10 @@ throw new Exception("break");
|
|||
if (TimerEnabled)
|
||||
{
|
||||
TimerTickCounter += delta;
|
||||
if (TimerTickCounter >= 1024)
|
||||
while (TimerTickCounter >= 1024)
|
||||
{
|
||||
TimerValue--;
|
||||
TimerTickCounter &= 1023;
|
||||
TimerTickCounter -= 1024;
|
||||
if (TimerValue == 0xFF)
|
||||
{
|
||||
TimerValue = TimerReloadValue;
|
||||
|
|
|
@ -74,13 +74,14 @@ namespace BizHawk.Emulation.Consoles.TurboGrafx
|
|||
RenderScanLine();
|
||||
|
||||
if (ScanLine == VBlankScanline && VBlankInterruptEnabled)
|
||||
{
|
||||
Log.Note("VDC", "Firing VBlank interrupt at {0}", ScanLine);
|
||||
StatusByte |= StatusVerticalBlanking;
|
||||
cpu.IRQ1Assert = true;
|
||||
}
|
||||
|
||||
cpu.Execute(2);
|
||||
|
||||
cpu.Execute(455-hblankCycles);
|
||||
if ((StatusByte & StatusVerticalBlanking) > 0)
|
||||
cpu.IRQ1Assert = true;
|
||||
|
||||
cpu.Execute(455-hblankCycles-2);
|
||||
|
||||
if (ScanLine == VBlankScanline)
|
||||
UpdateSpriteAttributeTable();
|
||||
|
|
|
@ -510,10 +510,10 @@ namespace HuC6280
|
|||
w.WriteLine(" if (TimerEnabled)");
|
||||
w.WriteLine(" {");
|
||||
w.WriteLine(" TimerTickCounter += delta;");
|
||||
w.WriteLine(" if (TimerTickCounter >= 1024)");
|
||||
w.WriteLine(" while (TimerTickCounter >= 1024)");
|
||||
w.WriteLine(" {");
|
||||
w.WriteLine(" TimerValue--;");
|
||||
w.WriteLine(" TimerTickCounter &= 1023;");
|
||||
w.WriteLine(" TimerTickCounter -= 1024;");
|
||||
w.WriteLine(" if (TimerValue == 0xFF)");
|
||||
w.WriteLine(" {");
|
||||
w.WriteLine(" TimerValue = TimerReloadValue;");
|
||||
|
|
Loading…
Reference in New Issue