Altera Quartus II Scripting User Manual Page 151

  • Download
  • Add to my manuals
  • Print
  • Page
    / 634
  • Table of contents
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 150
Chapter 3: Tcl Packages & Commands 3–21
advanced_timing
© July 2013 Altera Corporation Quartus II Scripting Reference Manual
get_timing_edges
Usage
get_timing_edges
Options
None
Description
Returns a collection of edge ids.
Example
# Count the number of synchronous edges in the design
load_package advanced_timing
project_open <design>
create_timing_netlist
set count 0
foreach_in_collection edge [get_timing_edges] {
set type [get_timing_edge_info -info type $edge]
if { [string compare $type "synch"] == 0} {
incr count
}
}
puts "found $count synchronous edges"
project_close
Page view 150
1 2 ... 146 147 148 149 150 151 152 153 154 155 156 ... 633 634

Comments to this Manuals

No comments