From e6871b2cc3046e84b9479cbefb7f439c48f9b035 Mon Sep 17 00:00:00 2001 From: SaxxonPike Date: Sat, 13 Jul 2019 00:27:08 -0500 Subject: [PATCH] C64: Move VIC raster IRQ to phase 1 --- .../Computers/Commodore64/MOS/Vic.cs | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs index b5db242f94..c9cbc09747 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs @@ -249,17 +249,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS _spriteSpriteCollisionClearPending = false; } - // render - ParseCycle(); - UpdateBa(); - UpdatePins(); - Render(); - } - - public void ExecutePhase2() - { - // phi2 - // start of rasterline if ((_cycle == RasterIrqLineXCycle && _rasterLine > 0) || (_cycle == RasterIrqLine0Cycle && _rasterLine == 0)) { @@ -273,6 +262,17 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS } } + // render + ParseCycle(); + UpdateBa(); + UpdatePins(); + Render(); + } + + public void ExecutePhase2() + { + // phi2 + // check top and bottom border if (_rasterLine == _borderB) {