Intel® Quartus® Prime Pro Edition User Guide: Scripting
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: mwh1410471021567
Ixiasoft
Visible to Intel only — GUID: mwh1410471021567
Ixiasoft
3.5.2. Controlling Processing
For example, if you want a script to run only after timing analysis, use a conditional test like the following example. It checks the flow or module name passed as the first argument to the script and executes code when the module is quartus_sta.
Restrict Processing to a Single Module
set module [lindex $quartus(args) 0] if [string match "quartus_sta" $module] { # Include commands here that are run # after timing analysis # Use the post-message command to display # messages post_message "Running after timing analysis" }