Skip to content

Commit

Permalink
Update controller.sv
Browse files Browse the repository at this point in the history
  • Loading branch information
AEzzejjari authored Nov 21, 2023
1 parent aa53b3c commit a43c57d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/controller.sv
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ module controller
// ----------------------
always_comb begin
// halt the core if the fence is active
halt_o = halt_csr_i || halt_acc_i || fence_active_q;
halt_o = halt_csr_i || halt_acc_i || (DCACHE_TYPE == int'(config_pkg::WB) && fence_active_q);
end

// ----------------------
Expand Down

0 comments on commit a43c57d

Please sign in to comment.