Fix CARRY4 abc_box_id

This commit is contained in:
Eddie Hung 2019-06-28 11:28:50 -07:00
parent 0d347e1708
commit cf020befeb
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ module XORCY(output O, input CI, LI);
assign O = CI ^ LI;
endmodule
(* abc_box_id = 3, abc_carry="CI,CO", lib_whitebox *)
(* abc_box_id = 4, abc_carry="CI,CO", lib_whitebox *)
module CARRY4(output [3:0] CO, O, input CI, CYINIT, input [3:0] DI, S);
assign O = S ^ {CO[2:0], CI | CYINIT};
assign CO[0] = S[0] ? CI | CYINIT : DI[0];