mirror of
https://github.com/garrettsworkshop/Warp-SE.git
synced 2025-08-07 23:25:00 +00:00
Fix bug in CNT.v
This commit is contained in:
@@ -120,7 +120,7 @@ module CNT(
|
||||
/* Startup sequence state control */
|
||||
reg [1:0] IS = 0;
|
||||
always @(posedge CLK) begin
|
||||
if (nPOR) IS <= 0;
|
||||
if (!nPOR) IS <= 0;
|
||||
else case (IS[1:0])
|
||||
0: if (LTimerTick) IS <= 1;
|
||||
1: if (LTimerTick) IS <= 2;
|
||||
|
Reference in New Issue
Block a user