Skip to content

Commit

Permalink
test: Don't cut the inputs for easier debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Oct 4, 2023
1 parent 215a8ac commit ae1f666
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/tb_floo_narrow_wide_chimney.sv
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,9 @@ module tb_floo_narrow_wide_chimney;
.NarrowReorderBufferSize ( ReorderBufferSize ),
.WideMaxTxns ( MaxTxns ),
.WideMaxTxnsPerId ( MaxTxnsPerId ),
.WideReorderBufferSize ( ReorderBufferSize )
.WideReorderBufferSize ( ReorderBufferSize ),
.CutAx ( 1'b0 ),
.CutRsp ( 1'b0 )
) i_floo_narrow_wide_chimney_0 (
.clk_i ( clk ),
.rst_ni ( rst_n ),
Expand Down Expand Up @@ -232,7 +234,9 @@ module tb_floo_narrow_wide_chimney;
.NarrowReorderBufferSize ( ReorderBufferSize ),
.WideMaxTxns ( MaxTxns ),
.WideMaxTxnsPerId ( MaxTxnsPerId ),
.WideReorderBufferSize ( ReorderBufferSize )
.WideReorderBufferSize ( ReorderBufferSize ),
.CutAx ( 1'b0 ),
.CutRsp ( 1'b0 )
) i_floo_narrow_wide_chimney_1 (
.clk_i ( clk ),
.rst_ni ( rst_n ),
Expand Down

0 comments on commit ae1f666

Please sign in to comment.