Skip to content

Commit

Permalink
Update load_unit.sv
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanRochCoulon authored Oct 7, 2023
1 parent 69aac5e commit 51e86d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/load_unit.sv
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ module load_unit import ariane_pkg::*; #(
// the output is also valid if we got an exception. An exception arrives one cycle after
// dtlb_hit_i is asserted, i.e. when we are in SEND_TAG. Otherwise, the exception
// corresponds to the next request that is already being translated (see below).
if(ex_i.valid && (state_q == SEND_TAG)) begin
if (ex_i.valid && (state_q == SEND_TAG)) begin
valid_o = 1'b1;
ex_o.valid = 1'b1;
end
Expand Down

0 comments on commit 51e86d2

Please sign in to comment.