Skip to content

Commit

Permalink
tb(mesh): Fix endpoint enum names
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Dec 19, 2024
1 parent f4293cf commit 4100208
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hw/tb/tb_floo_axi_mesh.sv
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ module tb_floo_axi_mesh;
localparam string DmaName = $sformatf("dma_%0d_%0d", x, y);

localparam int unsigned Index = x * NumY + y;
localparam addr_t MemBaseAddr = Sam[ClusterNi00+Index].start_addr;
localparam addr_t MemBaseAddr = Sam[ClusterX0Y0+Index].start_addr;

floo_dma_test_node #(
.TA ( ApplTime ),
Expand Down
2 changes: 1 addition & 1 deletion hw/tb/tb_floo_nw_mesh.sv
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ module tb_floo_nw_mesh;
localparam string WideDmaName = $sformatf("wide_dma_%0d_%0d", x, y);

localparam int unsigned Index = x * NumY + y;
localparam addr_t MemBaseAddr = Sam[ClusterNi00+Index].start_addr;
localparam addr_t MemBaseAddr = Sam[ClusterX0Y0+Index].start_addr;

floo_dma_test_node #(
.TA ( ApplTime ),
Expand Down

0 comments on commit 4100208

Please sign in to comment.