Skip to content

Commit

Permalink
Fix wait end state in GMII TX
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Forencich <[email protected]>
  • Loading branch information
alexforencich committed Jan 29, 2024
1 parent 13c1872 commit b784f23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/axis_gmii_tx.v
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ always @* begin

if (s_axis_tvalid) begin
if (s_axis_tlast) begin
s_axis_tready_next = 1'b0;
s_axis_tready_next = !s_axis_tready_reg;
if (frame_ptr_reg < cfg_ifg-1) begin
state_next = STATE_IFG;
end else begin
Expand Down

0 comments on commit b784f23

Please sign in to comment.