mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Fixed lint error in div
This commit is contained in:
parent
b98bc89f76
commit
a37d9b5e8e
@ -282,7 +282,8 @@ module csa #(parameter WIDTH=8) (input logic [WIDTH-1:0] a, b, c,
|
|||||||
fa fa_inst (a[i], b[i], c[i], sum[i], carry_temp[i+1]);
|
fa fa_inst (a[i], b[i], c[i], sum[i], carry_temp[i+1]);
|
||||||
end
|
end
|
||||||
endgenerate
|
endgenerate
|
||||||
assign carry = {1'b0, carry_temp[WIDTH-1:1], 1'b0};
|
//assign carry = {1'b0, carry_temp[WIDTH-1:1], 1'b0}; // trmimmed excess bit dh 5/3/21
|
||||||
|
assign carry = {carry_temp[WIDTH-1:1], 1'b0};
|
||||||
|
|
||||||
endmodule // adder
|
endmodule // adder
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user