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