Skip to content

Commit

Permalink
Fix tx_pending
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Czyz <[email protected]>
  • Loading branch information
mczyz-antmicro committed Dec 20, 2024
1 parent 6298365 commit dccef49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ctrl/descriptor_tx.sv
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ module descriptor_tx #(
end else begin
if (tx_start) begin
tx_pending <= '1;
end else if (tx_byte_last_o) begin
end else if (tx_end) begin
tx_pending <= '0;
end
end
Expand Down

0 comments on commit dccef49

Please sign in to comment.