From 263891b3f644e3b714dd1f0a2fd69d47f01108f1 Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Wed, 4 Mar 2015 00:31:41 -0800 Subject: [PATCH] Make sure all paths set state_next --- rtl/axis_eth_fcs_check.v | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtl/axis_eth_fcs_check.v b/rtl/axis_eth_fcs_check.v index 434e204e0..bc6884047 100644 --- a/rtl/axis_eth_fcs_check.v +++ b/rtl/axis_eth_fcs_check.v @@ -150,6 +150,8 @@ always @* begin reset_crc = 0; update_crc = 1; state_next = STATE_PAYLOAD; + end else begin + state_next = STATE_IDLE; end end else begin state_next = STATE_IDLE;