From e3974809ec55395fad4f6b407b03784f397e3f30 Mon Sep 17 00:00:00 2001 From: "William D. Jones" Date: Sun, 31 Jan 2021 23:57:13 -0500 Subject: [PATCH] machxo2: Add DCCA and DCMA blackbox primitives. --- techlibs/machxo2/cells_sim.v | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/techlibs/machxo2/cells_sim.v b/techlibs/machxo2/cells_sim.v index e046d0c87..c6d70a055 100644 --- a/techlibs/machxo2/cells_sim.v +++ b/techlibs/machxo2/cells_sim.v @@ -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. -- 2.30.2