Skip to content

Commit

Permalink
fix(lib): Fix axi_rlast signal of axi2axil; Fix txdata reg of iob_uart.
Browse files Browse the repository at this point in the history
  • Loading branch information
arturum1 committed Sep 13, 2024
1 parent f57db1e commit fc7c6dc
Show file tree
Hide file tree
Showing 3 changed files with 366 additions and 345 deletions.
6 changes: 3 additions & 3 deletions lib/hardware/buses/axi2axil/axi2axil.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ def setup(py_params_dict):
assign axil_rready_o = axi_rready_i;
// Unused axi outputs
assign axi_bid_o = 'b0;
assign axi_rid_o = 'b0;
assign axi_rlast_o = 'b0;
assign axi_bid_o = 1'b0;
assign axi_rid_o = 1'b0;
assign axi_rlast_o = 1'b1;
// Unused axi inputs
// axi_awid_i
Expand Down
Loading

0 comments on commit fc7c6dc

Please sign in to comment.