Merge pull request #535 from stineje/main

fix bad typo on spef integration for tsmc28psyn
This commit is contained in:
David Harris 2023-12-15 21:13:38 -08:00 committed by GitHub
commit 0eed57a0b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -297,7 +297,7 @@ set filename [format "%s%s%s%s" $outputDir "/mapped/" $my_design ".sdf"]
write_sdf $filename
# Write SPEF file in case need more precision power exploration for TSMC28psyn
if {$tech != "tsmc28psyn"} {
if {$tech == "tsmc28psyn"} {
set filename [format "%s%s%s%s" $outputDir "/mapped/" $my_toplevel ".spef"]
redirect $filename { write_parasitics }
}