1
0
mirror of https://github.com/corundum/corundum.git synced 2025-01-16 08:12:53 +08:00

Add default case

This commit is contained in:
Alex Forencich 2015-05-16 22:34:29 -07:00
parent 15edfa0f85
commit 0352d55084

View File

@ -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