![Altera timequest Quick Start Manual Download Page 19](http://html1.mh-extra.com/html/altera/timequest/timequest_quick-start-manual_2910823019.webp)
© December 2009 Altera Corporation
TimeQuest Timing Analyzer Quick Start Tutorial
3. Script Examples
Commands and Tcl Scripts
This section includes commands and accompanying Tcl scripts to execute the entire
flow from the command line. Use this method to completely execute the entire flow.
Enter the command in
Example 3–1
at a command prompt to source the scripts.
Example 3–2
shows the content of the
timequest_setup.tcl
script. Use this script to
specify the TimeQuest Timing Analyzer as the default timing analysis tool.
1
The Classic Timing Analyzer is the default timing analyzer in the Quartus II software.
Example 3–3
shows the content of the
main_postmap.tcl
script. Use this script to
create post-map data, set up the timing netlist, read in
golden.sdc
, and generate initial
reports for the design.
Example 3–1.
Source the Scripts
quartus_sh –t timequest_setup.tcl
r
quartus_sta –t main_postmap.tcl
r
quartus_sh –t fit_sdc_setup.tcl
r
quartus_sta –t main_postfit.tcl
r
Example 3–2.
The timeqest_setup.tcl Script
#open the filtref project
project_open filtref
r
#set the TimeQuest analyzer as the default timing analyzer
set_global_assignment -name USE_TIMEQUEST_TIMING_ANALYZER ON
r
#close the project
project_close
r