diff --git a/hw/tb/tb_floo_dma_mesh.sv b/hw/tb/tb_floo_dma_mesh.sv index c35ce7be..d47b86f0 100644 --- a/hw/tb/tb_floo_dma_mesh.sv +++ b/hw/tb/tb_floo_dma_mesh.sv @@ -256,7 +256,6 @@ module tb_floo_dma_mesh; floo_dma_test_node #( .TA ( ApplTime ), .TT ( TestTime ), - .TCK ( CyclTime ), .DataWidth ( AxiNarrowInDataWidth ), .AddrWidth ( AxiNarrowInAddrWidth ), .UserWidth ( AxiNarrowInUserWidth ), @@ -283,7 +282,6 @@ module tb_floo_dma_mesh; floo_dma_test_node #( .TA ( ApplTime ), .TT ( TestTime ), - .TCK ( CyclTime ), .DataWidth ( AxiWideInDataWidth ), .AddrWidth ( AxiWideInAddrWidth ), .UserWidth ( AxiWideInUserWidth ), diff --git a/hw/test/floo_dma_test_node.sv b/hw/test/floo_dma_test_node.sv index 500fc611..fb86e381 100644 --- a/hw/test/floo_dma_test_node.sv +++ b/hw/test/floo_dma_test_node.sv @@ -13,7 +13,6 @@ module floo_dma_test_node #( parameter time TA = 1ns, parameter time TT = 9ns, - parameter time TCK = 10ns, parameter int unsigned BufferDepth = 16, parameter int unsigned NumAxInFlight = 16, parameter int unsigned DataWidth = 32,