mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-18 01:02:19 +00:00
enable more primitives supported with nextpnr
This commit is contained in:
parent
3b9ebfa672
commit
0756285710
5 changed files with 135 additions and 18 deletions
|
@ -408,6 +408,17 @@ module FIFO8KB (...);
|
|||
output FF;
|
||||
endmodule
|
||||
|
||||
(* blackbox *)
|
||||
module CLKDIVC (...);
|
||||
parameter GSR = "DISABLED";
|
||||
parameter DIV = "2.0";
|
||||
input RST;
|
||||
input CLKI;
|
||||
input ALIGNWD;
|
||||
output CDIV1;
|
||||
output CDIVX;
|
||||
endmodule
|
||||
|
||||
(* blackbox *)
|
||||
module DCMA (...);
|
||||
input CLK0;
|
||||
|
@ -416,6 +427,21 @@ module DCMA (...);
|
|||
output DCMOUT;
|
||||
endmodule
|
||||
|
||||
(* blackbox *)
|
||||
module ECLKSYNCA (...);
|
||||
input ECLKI;
|
||||
input STOP;
|
||||
output ECLKO;
|
||||
endmodule
|
||||
|
||||
(* blackbox *)
|
||||
module ECLKBRIDGECS (...);
|
||||
input CLK0;
|
||||
input CLK1;
|
||||
input SEL;
|
||||
output ECSOUT;
|
||||
endmodule
|
||||
|
||||
(* blackbox *)
|
||||
module DCCA (...);
|
||||
input CLKI;
|
||||
|
@ -423,6 +449,11 @@ module DCCA (...);
|
|||
output CLKO;
|
||||
endmodule
|
||||
|
||||
(* blackbox *) (* keep *)
|
||||
module START (...);
|
||||
input STARTCLK;
|
||||
endmodule
|
||||
|
||||
(* blackbox *)
|
||||
module EHXPLLJ (...);
|
||||
parameter CLKI_DIV = 1;
|
||||
|
@ -533,3 +564,8 @@ module OSCH (...);
|
|||
output SEDSTDBY;
|
||||
endmodule
|
||||
|
||||
(* blackbox *) (* keep *)
|
||||
module TSALL (...);
|
||||
input TSALL;
|
||||
endmodule
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue