Skip to content

Commit

Permalink
src/cache/cachefsm.sv: Fix a small mistake made during rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
infinitymdm committed Apr 16, 2024
1 parent 9e74da9 commit 7604ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cache/cachefsm.sv
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ module cachefsm import cvw::*; #(parameter cvw_t P,
flop #(1) resetDelayReg(.clk, .d(reset), .q(resetDelay));

always_ff @(posedge clk)
if (reset | FlushStage) CurrState <= STATE_READY;
if (reset | FlushStage) CurrState <= STATE_ACCESS;
else CurrState <= NextState;

always_comb begin
Expand Down

0 comments on commit 7604ebb

Please sign in to comment.