Skip to content

Commit ceeea4b

Browse files
committed
modify acknowledge assign
1 parent edaec3b commit ceeea4b

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
@@ -137,7 +137,7 @@ arb_inst (
137137
);
138138

139139
assign request = s_axis_tvalid & ~grant;
140-
assign acknowledge = grant & s_axis_tvalid & s_axis_tready & s_axis_tlast;
140+
assign acknowledge = grant & s_axis_tvalid & s_axis_tready & (LAST_ENABLE ? s_axis_tlast : {S_COUNT{1'b1}});
141141

142142
always @* begin
143143
// pass through selected packet data

0 commit comments

Comments
 (0)