3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-04 18:30:25 +00:00

Add abc9_ops -check, -prep_times, -write_box for required times

This commit is contained in:
Eddie Hung 2020-01-10 11:45:41 -08:00
parent 5e280a3b59
commit b2259a9201
3 changed files with 256 additions and 75 deletions

View file

@ -33,6 +33,11 @@ endmodule
module \$__ABC9_FF_ (input D, output Q);
endmodule
(* abc9_box_id = (9000+DELAY) *)
module \$__ABC9_DELAY (input I, output O);
parameter DELAY = 0;
endmodule
// Box to emulate async behaviour of FDC*
(* abc9_box_id = 1000, lib_whitebox *)
module \$__ABC9_ASYNC0 (input A, S, output Y);