mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-21 21:33:40 +00:00
quicklogic: ABC9 synthesis
This commit is contained in:
parent
a58571d0fe
commit
dce037a62c
12 changed files with 97 additions and 22 deletions
11
techlibs/quicklogic/abc9_model.v
Normal file
11
techlibs/quicklogic/abc9_model.v
Normal file
|
@ -0,0 +1,11 @@
|
|||
(* abc9_flop, lib_whitebox *)
|
||||
module $__PP3_DFFEPC_SYNCONLY (
|
||||
output Q,
|
||||
input D,
|
||||
input CLK,
|
||||
input EN,
|
||||
);
|
||||
|
||||
dffepc ff (.Q(Q), .D(D), .CLK(CLK), .EN(EN), .PRE(1'b0), .CLR(1'b0));
|
||||
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue