Skip to content

Commit

Permalink
multiplier works for all pipes and backpressure
Browse files Browse the repository at this point in the history
  • Loading branch information
quinten-guelinckx committed Oct 29, 2024
1 parent 01747f4 commit edbf48f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hw/rtl/multiplier.sv
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ module multiplier #(
assign ready_o = 1'b1;
end else begin : g_pipe_backpressure
bp_pipe #(
.DATAW(DATAW),
.DATAW(2*DATAW),
.PIPES(PIPES)
) bp_pipe_inst (
.clk_i(clk_i),
Expand Down
2 changes: 1 addition & 1 deletion hw/unit_test/multiplier/src/tb_multiplier.sv
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module tb_multiplier;
// parameters
parameter int DATAW = 8;
parameter int PIPES = 1;
parameter int BACKPRESSURE = 0;
parameter int BACKPRESSURE = 1;

//signals
logic signed [DATAW-1:0] data_i [2];
Expand Down

0 comments on commit edbf48f

Please sign in to comment.