From 56b03b2d7101cbe164a89005efbef4f9907611a2 Mon Sep 17 00:00:00 2001 From: Eric Astor Date: Thu, 15 Feb 2024 13:05:41 -0500 Subject: [PATCH] Fix flop count in synth.tcl Fix one glob used to match flops in the default synth.tcl flow; previously excluded flops in some PDKs. --- synthesis/synth.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synthesis/synth.tcl b/synthesis/synth.tcl index da3f3b58..aea36ee8 100644 --- a/synthesis/synth.tcl +++ b/synthesis/synth.tcl @@ -131,7 +131,7 @@ read_liberty -lib -ignore_miss_func $liberty ltp -noff $top yosys log -n "Flop count: " -yosys select -count t:*__df* t:DFF* t:*_DFF* t:*_SDFF* t:*_ADFF* t:*dff +yosys select -count t:*__df* t:DF* t:*_DFF* t:*_SDFF* t:*_ADFF* t:*dff set base_liberty [file tail $liberty] yosys log Liberty: $base_liberty