Skip to content

Commit

Permalink
Fix nd typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thommythomaso committed Oct 24, 2023
1 parent a5285bf commit 16a233c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/synth/idma_nd_backend_synth.sv
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,11 @@ module idma_nd_backend_synth #(
.idma_busy_t ( idma_pkg::idma_busy_t ),
.axi_req_t ( axi_req_t ),
.axi_rsp_t ( axi_rsp_t ),
.read_meta_channel_t ( axi_read_meta_channel_t ),
.write_meta_channel_t ( axi_write_meta_channel_t )
.read_meta_channel_t ( read_meta_channel_t ),
.write_meta_channel_t ( write_meta_channel_t )
) i_idma_backend (
.clk_i ( clk_i ),
.rst_ni ( rst_ni ),
.clk_i,
.rst_ni,
.testmode_i ( test_i ),
.idma_req_i ( idma_req ),
.req_valid_i ( idma_req_valid ),
Expand All @@ -304,8 +304,8 @@ module idma_nd_backend_synth #(
.axi_req_t ( axi_req_t ),
.axi_resp_t ( axi_rsp_t )
) i_axi_rw_join (
.clk_i ( clk ),
.rst_ni ( rst_n ),
.clk_i,
.rst_ni,
.slv_read_req_i ( axi_read_req ),
.slv_read_resp_o ( axi_read_rsp ),
.slv_write_req_i ( axi_write_req ),
Expand All @@ -325,8 +325,8 @@ module idma_nd_backend_synth #(
.idma_nd_req_t ( idma_nd_req_t ),
.RepWidths ( RepWidths )
) i_idma_nd_midend (
.clk_i ( clk_i ),
.rst_ni ( rst_ni ),
.clk_i,
.rst_ni,
.nd_req_i ( nd_req ),
.nd_req_valid_i ( req_valid_i ),
.nd_req_ready_o ( req_ready_o ),
Expand Down

0 comments on commit 16a233c

Please sign in to comment.