From 9bf25c28bfefcc363d71b9e37a389c273960e47a Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Sat, 30 Sep 2023 21:58:44 +0200 Subject: [PATCH] In designflow.technos.setupCMOS(), more relaxed clock name pattern. --- cumulus/src/designflow/technos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cumulus/src/designflow/technos.py b/cumulus/src/designflow/technos.py index dca4a276..f807780d 100644 --- a/cumulus/src/designflow/technos.py +++ b/cumulus/src/designflow/technos.py @@ -69,7 +69,7 @@ def setupCMOS ( checkToolkit=None ): Viewer.Graphics.setStyle( 'Alliance.Classic [black]' ) af = CRL.AllianceFramework.get() env = af.getEnvironment() - env.setCLOCK( '^ck$|m_clock|^clk$' ) + env.setCLOCK( '^ck$|m_clock|^clk' ) env.addSYSTEM_LIBRARY( library=(Where.checkToolkit / 'cells' / 'niolib').as_posix() , mode =CRL.Environment.Append )