Skip to content

Commit

Permalink
quicksort pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Bohan-hu committed Aug 8, 2020
1 parent 5f6410a commit 3b0ff2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/sources_1/new/ifu/ICache.sv
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ module ICache(
sRecover: begin
if(rst) begin
nxtState = sReset;
end else if(instResp.valid && ctrl_iCache.pause) begin
end else if(instResp.valid && (ctrl_iCache.pause || ctrl_iCache.flush)) begin
nxtState = sIdle;
end else if(instResp.valid && !ctrl_iCache.pause) begin
nxtState = sRunning;
Expand Down

0 comments on commit 3b0ff2a

Please sign in to comment.