"Prince of Persia" fix -- more slowdown time after VIA access

This commit is contained in:
Zane Kaminski 2024-11-04 19:20:07 -05:00
parent d1f58eb0cc
commit d3383f0c02

View File

@ -79,8 +79,8 @@ module CNT(
always @(posedge CLK) begin
if (!nRESin) QS <= 3;
else if (BACT && IACK0CS) QS <= 15;
else if (BACT && VIACS) QS[1] <= 1;
else if (BACT && IWMCS) QS[1] <= 1;
else if (BACT && VIACS) QS[1:0] <= 2'b11;
else if (BACT && IWMCS) QS[1:0] <= 2'b11;
else if (SndCSWRr) QS <= 15;
else if (QS!=0 && TimerTick) QS <= QS-1;
end