⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 analyzres.tcl

📁 design compile synthesis user guide
💻 TCL
字号:
## Tcl script file for Chapter 10## Remove any designs in memory#remove_design -all## Read in the compiled design#read_file -format db [list {./db/TOP_compiled.db}]## Generate report#report_busreport_cellreport_netreport_compile_optionsreport_hierarchyreport_timing -path full -delay max -max_paths 3 -nworst 1current_instance {U1/U1}report_timing -path full -delay max -max_paths 3 -nworst 1current_instance {../..}report_timing -path end -delay max -max_paths 10 -nworst 1## Turn on the pin_name_layer#set_layer pin_name_layer visible TRUEset_layer pin_name_layer line_width 1set_layer pin_name_layer plot_line_width 0set_layer pin_name_layer red 65535set_layer pin_name_layer green 65535set_layer pin_name_layer blue 65535## Show timing to a specific pin#report_timing -path full -delay max -max_paths 10 -nworst 1 -from [find pin [list {U4/CLOCK_AM_PM}]] -to [find pin [list {U5/COMPARE_IN}]]## Set current_design to CONVERTOR_0#current_instance {U4}current_instance {../U5}current_instance {..}current_design {TOP_compiled.db:CONVERTOR_0}## Perform a check_design and check_timing on design TOP#current_design {TOP_compiled.db:TOP}check_designcheck_timing#quit

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -