1

Remove unnecessary default case from ConditionalUnit

This commit is contained in:
2023-03-30 13:22:45 +02:00
parent fb2667affa
commit 5b0d12183d

View File

@ -27,6 +27,5 @@ module ConditionalUnit(
3'b101: result = (operand != 0);
3'b110: result = (operand > 0);
3'b111: result = (operand >= 0);
default: result = 0;
endcase
endmodule