From 0352d550843c18c0435af6690e83715740054d8c Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Sat, 16 May 2015 22:34:29 -0700 Subject: [PATCH] Add default case --- rtl/eth_mac_10g_rx.v | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rtl/eth_mac_10g_rx.v b/rtl/eth_mac_10g_rx.v index 523907087..d50c3c69c 100644 --- a/rtl/eth_mac_10g_rx.v +++ b/rtl/eth_mac_10g_rx.v @@ -285,6 +285,9 @@ always @* begin 8'b10000000: begin detect_error_masked = detect_error[6:0]; end + default: begin + detect_error_masked = detect_error; + end endcase end