Skip to content

Commit

Permalink
Remove stall cycle in axis_arb_mux
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Forencich <[email protected]>
  • Loading branch information
alexforencich committed Jan 17, 2024
1 parent e493c6c commit a29282c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/axis_arb_mux.v
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ arb_inst (
.grant_encoded(grant_encoded)
);

assign request = (s_axis_tvalid_reg & ~grant) | (s_axis_tvalid & grant);
assign request = s_axis_tvalid | (s_axis_tvalid_reg & ~grant);
assign acknowledge = grant & s_axis_tvalid_reg & {S_COUNT{m_axis_tready_int_reg}} & (LAST_ENABLE ? s_axis_tlast_reg : {S_COUNT{1'b1}});

always @* begin
Expand Down

0 comments on commit a29282c

Please sign in to comment.