Fix issues quartus synthesis issues
This commit is contained in:
10
rtl/VX_alu.v
10
rtl/VX_alu.v
@@ -28,8 +28,8 @@ module VX_alu(
|
||||
.PIPELINE(div_pipeline_len)
|
||||
) unsigned_div (
|
||||
.clock(clk),
|
||||
.aclr(0),
|
||||
.clken(1), // TODO this could be disabled on inactive instructions
|
||||
.aclr(1'b0),
|
||||
.clken(1'b1), // TODO this could be disabled on inactive instructions
|
||||
.numer(ALU_in1),
|
||||
.denom(ALU_in2),
|
||||
.quotient(unsigned_div_result),
|
||||
@@ -45,8 +45,8 @@ module VX_alu(
|
||||
.PIPELINE(div_pipeline_len)
|
||||
) signed_div (
|
||||
.clock(clk),
|
||||
.aclr(0),
|
||||
.clken(1), // TODO this could be disabled on inactive instructions
|
||||
.aclr(1'b0),
|
||||
.clken(1'b1), // TODO this could be disabled on inactive instructions
|
||||
.numer(ALU_in1),
|
||||
.denom(ALU_in2),
|
||||
.quotient(signed_div_result),
|
||||
@@ -209,4 +209,4 @@ module VX_alu(
|
||||
end
|
||||
`endif
|
||||
|
||||
endmodule : VX_alu
|
||||
endmodule : VX_alu
|
||||
|
||||
Reference in New Issue
Block a user