Added drivers for unused operations in MUX, so Vivado doesn't show the warning of being undriven

This commit is contained in:
WilliamMiceli
2019-03-29 16:11:52 -04:00
parent 03eb3f3740
commit 5c165d603a

View File

@@ -65,8 +65,6 @@ module ALU(
.A(operand0),
.B(result_K));
// L (1011)
// Will hacked in here
// M (1100)
// N (1101)
// O (1110)
@@ -87,10 +85,10 @@ module ALU(
.J(result_J),
.K(result_K),
.L(9'b000000000),
.M(result_M),
.N(result_N),
.O(result_O),
.P(result_P),
.M(9'b111111111), // Currently not used
.N(9'b111111111), // Currently not used
.O(9'b111111111), // Currently not used
.P(9'b111111111), // Currently not used
.out(result));