mirror of https://github.com/YosysHQ/yosys.git
machxo2: Add DCCA and DCMA blackbox primitives.
This commit is contained in:
parent
a1ea1430b6
commit
e3974809ec
|
@ -188,6 +188,23 @@ module OSCH #(
|
|||
);
|
||||
endmodule
|
||||
|
||||
(* blackbox *)
|
||||
module DCCA (
|
||||
input CLKI,
|
||||
input CE,
|
||||
output CLKO
|
||||
);
|
||||
endmodule
|
||||
|
||||
(* blackbox *)
|
||||
module DCMA (
|
||||
input CLK0,
|
||||
input CLK1,
|
||||
input SEL,
|
||||
output DCMOUT
|
||||
);
|
||||
endmodule
|
||||
|
||||
// IO- "$__" cells for the iopadmap pass. These are temporary cells not meant
|
||||
// to be instantiated by the end user. They are required in this file for
|
||||
// attrmvcp to work.
|
||||
|
|
Loading…
Reference in New Issue