mirror of
https://github.com/garrettsworkshop/Warp-SE.git
synced 2025-04-11 23:37:35 +00:00
"Prince of Persia" fix -- more slowdown time after VIA access
This commit is contained in:
parent
d1f58eb0cc
commit
d3383f0c02
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user