王建飞 发表于 2015-9-2 09:39:16

With the TimeQuest command report_path, you can generate delay reports from a...

This example shows a simple Tcl script that you can use to report the worst case setup check in the TimeQuest user interface. A setup check verifies that the setup clock requirements of the register-to-register path is not violated. Copy the Tcl commands to a script file and run it by typing the following in the TimeQuest Console pane:

tcl> source my_script.tcl

# Run a setup analysis between registers "regA" and "regB",

# reporting the worst-case slack if a path is found.

set my_list

set num_paths

set wc_slack

if { $num_paths > 0 } {

puts "Worst case slack -from regA -to regB is $wc_slack"

}

The use of this design is governed by, and subject to, the terms and conditions of the Altera® Hardware Reference Design License Agreement.
页: [1]
查看完整版本: With the TimeQuest command report_path, you can generate delay reports from a...