We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e493c6c commit a29282cCopy full SHA for a29282c
rtl/axis_arb_mux.v
@@ -168,7 +168,7 @@ arb_inst (
168
.grant_encoded(grant_encoded)
169
);
170
171
-assign request = (s_axis_tvalid_reg & ~grant) | (s_axis_tvalid & grant);
+assign request = s_axis_tvalid | (s_axis_tvalid_reg & ~grant);
172
assign acknowledge = grant & s_axis_tvalid_reg & {S_COUNT{m_axis_tready_int_reg}} & (LAST_ENABLE ? s_axis_tlast_reg : {S_COUNT{1'b1}});
173
174
always @* begin
0 commit comments