Altera Quartus II Scripting Manuel d'utilisateur Page 153

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 634
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 152
Chapter 3: Tcl Packages & Commands 3–23
advanced_timing
© July 2013 Altera Corporation Quartus II Scripting Reference Manual
get_timing_node_fanout
Usage
get_timing_node_fanout <node>
Options
<node>: Node
Description
Returns a list of nodes fed by the specified node in the following form:
{{node} {IC delay} {CELL delay}}
Example
# Print output nodes for all registers
load_package advanced_timing
project_open <design>
create_timing_netlist
foreach_in_collection node [get_timing_nodes -type reg] {
set reg_name [get_timing_node_info -info name $node]
set fanouts [get_timing_node_fanout $node]
puts "register $reg_name has fanouts:"
foreach fanout $fanouts {
set dst_name [get_timing_node_info -info name [lindex $fanout 0]]
puts "-> $dst_name"
}
}
project_close
Vue de la page 152
1 2 ... 148 149 150 151 152 153 154 155 156 157 158 ... 633 634

Commentaires sur ces manuels

Pas de commentaire