Altera Quartus II Scripting Uživatelský manuál Strana 151

  • Stažení
  • Přidat do mých příruček
  • Tisk
  • Strana
    / 634
  • Tabulka s obsahem
  • KNIHY
  • Hodnocené. / 5. Na základě hodnocení zákazníků
Zobrazit stránku 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
Zobrazit stránku 150
1 2 ... 146 147 148 149 150 151 152 153 154 155 156 ... 633 634

Komentáře k této Příručce

Žádné komentáře