Skip to content

Commit

Permalink
fix(hw): default value to not infer latch
Browse files Browse the repository at this point in the history
- add default value for `araddr_int` in `axis2axi_out.v` to stop some
  tools (ex. quartus) for inferring latches
  • Loading branch information
P-Miranda committed Jun 19, 2024
1 parent 9dee9cf commit e877b4d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ module axis2axi_out #(
always @* begin
state_nxt = state;
arvalid_int = 1'b0;
araddr_int = 24'b0;
next_address = current_address;
next_length = current_length;

Expand Down

0 comments on commit e877b4d

Please sign in to comment.