Skip to content

Commit a29282c

Browse files
committed
Remove stall cycle in axis_arb_mux
Signed-off-by: Alex Forencich <[email protected]>
1 parent e493c6c commit a29282c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rtl/axis_arb_mux.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ arb_inst (
168168
.grant_encoded(grant_encoded)
169169
);
170170

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

174174
always @* begin

0 commit comments

Comments
 (0)