Remove unreachable code

This commit is contained in:
Alex Forencich 2019-01-16 13:26:14 -08:00
parent bf94ef56b8
commit 32d889b20d

View File

@ -353,12 +353,7 @@ always @* begin
error_bad_fcs_next = 1'b1;
end
if (xgmii_rxc_d1[0] && xgmii_rxd_d1[7:0] == XGMII_START) begin
// start condition
state_next = STATE_PAYLOAD;
end else begin
state_next = STATE_IDLE;
end
state_next = STATE_IDLE;
end
endcase
end