Skip to content

Commit

Permalink
test: Use proper id_t type in DMA mesh
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Nov 10, 2023
1 parent 83e01e2 commit 5269055
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions test/tb_floo_dma_mesh.sv
Original file line number Diff line number Diff line change
Expand Up @@ -213,15 +213,14 @@ module tb_floo_dma_mesh;
.WideReorderBufferSize ( WideReorderBufferSize ),
.CutAx ( CutAx ),
.CutRsp ( CutRsp ),
.xy_id_t ( xy_id_t )
.id_t ( xy_id_t )
) i_hbm_chimney [NumChimneys-1:0] (
.clk_i ( clk ),
.rst_ni ( rst_n ),
.sram_cfg_i ( '0 ),
.test_enable_i ( 1'b0 ),
.id_i ( '0 ),
.id_i ( xy_id_hbm ),
.id_map_i ( '0 ),
.xy_id_i ( xy_id_hbm ),
.axi_narrow_in_req_i ( '0 ),
.axi_narrow_in_rsp_o ( ),
.axi_narrow_out_req_o ( narrow_hbm_req[i] ),
Expand Down Expand Up @@ -352,15 +351,14 @@ module tb_floo_dma_mesh;
.WideReorderBufferSize ( WideReorderBufferSize ),
.CutAx ( CutAx ),
.CutRsp ( CutRsp ),
.xy_id_t ( xy_id_t )
.id_t ( xy_id_t )
) i_dma_chimney (
.clk_i ( clk ),
.rst_ni ( rst_n ),
.sram_cfg_i ( '0 ),
.test_enable_i ( 1'b0 ),
.id_i ( '0 ),
.id_i ( current_id ),
.id_map_i ( '0 ),
.xy_id_i ( current_id ),
.axi_narrow_in_req_i ( narrow_man_req[x][y] ),
.axi_narrow_in_rsp_o ( narrow_man_rsp[x][y] ),
.axi_narrow_out_req_o ( narrow_sub_req[x][y] ),
Expand Down

0 comments on commit 5269055

Please sign in to comment.