mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
machxo2: Add DCCA and DCMA blackbox primitives.
This commit is contained in:
parent
a1ea1430b6
commit
e3974809ec
|
@ -188,6 +188,23 @@ module OSCH #(
|
||||||
);
|
);
|
||||||
endmodule
|
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
|
// 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
|
// to be instantiated by the end user. They are required in this file for
|
||||||
// attrmvcp to work.
|
// attrmvcp to work.
|
||||||
|
|
Loading…
Reference in a new issue