Altera Quartus II Scripting Manuel d'utilisateur Page 158

  • 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 157
3–28 Chapter 3: Tcl Packages & Commands
advanced_timing
Quartus II Scripting Reference Manual © July 2013 Altera Corporation
p2p_timing_cut_exist
Usage
p2p_timing_cut_exist -from <from> -to <to>
Options
-from <from>: source node id
-to <to>: destination node id
Description
Returns whether a p2p path is cut or not
Arguments:-from <node_id>
-to <node_id>
Example
# iterate through all nodes and print all CUT assignments
# from registers to pins
load_package advanced_timing
project_open <design>
create_timing_netlist
load_package advanced_timing
puts "CUT Assignments:"
foreach_in_collection src_node [get_timing_nodes -type reg] {
foreach_in_collection dst_node [get_timing_nodes -type pin] {
if [p2p_timing_cut_exist -from $src_node -to $dst_node] {
puts "from: [get_timing_node_info -info name $src_node] \
to: [get_timing_node_info -info name $dst_node]"
}
}
}
Vue de la page 157
1 2 ... 153 154 155 156 157 158 159 160 161 162 163 ... 633 634

Commentaires sur ces manuels

Pas de commentaire