Fix attributes on $__ABC9_ASYNC[01] whitebox

This commit is contained in:
Eddie Hung 2019-12-31 11:14:11 -08:00
parent 789211d9b3
commit b4663a987b
1 changed files with 2 additions and 2 deletions

View File

@ -34,13 +34,13 @@ module \$__ABC9_FF_ (input D, output Q);
endmodule
// Box to emulate async behaviour of FDC*
(* abc_box_id = 1000 *)
(* abc9_box_id = 1000, lib_whitebox *)
module \$__ABC9_ASYNC0 (input A, S, output Y);
assign Y = S ? 1'b0 : A;
endmodule
// Box to emulate async behaviour of FDP*
(* abc_box_id = 1001 *)
(* abc9_box_id = 1001, lib_whitebox *)
module \$__ABC9_ASYNC1 (input A, S, output Y);
assign Y = S ? 1'b0 : A;
endmodule