Skip to content

Commit

Permalink
hw: Fix unused parameters in axi_to_mem
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Jul 19, 2024
1 parent fe55167 commit d6c2b21
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions hw/snitch_cluster/src/snitch_cluster.sv
Original file line number Diff line number Diff line change
Expand Up @@ -1265,13 +1265,7 @@ module snitch_cluster
.AddrWidth (PhysicalAddrWidth),
.DataWidth (WideDataWidth),
.IdWidth (WideIdWidthOut),
.NumBanks (1),
.BufDepth (MemoryMacroLatency + 1),
.HideStrb (),
.OutFifoDepth (),
.addr_t (), // Dependent parameter, do not override.
.mem_data_t (), // Dependent parameter, do not override.
.mem_strb_t () // Dependent parameter, do not override.
.NumBanks (1)
) i_axi_to_mem (
.clk_i (clk_i),
.rst_ni (rst_ni),
Expand Down

0 comments on commit d6c2b21

Please sign in to comment.