Altera Quartus II Scripting Instrukcja Użytkownika Strona 160

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 634
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 159
3–30 Chapter 3: Tcl Packages & Commands
backannotate
Quartus II Scripting Reference Manual © July 2013 Altera Corporation
get_back_annotation_assignments
Usage
get_back_annotation_assignments
Options
None
Description
Returns an output collection of back-annotation assignments.
Each element of the collection is a list with the following format: { {<Source>} {<Destination>}
{<Assignment name>} {<Assignment value>} {<Entity name>} }
Example
## Print out all the back-annotation assignments
set asgn_col [get_back_annotation_assignments]
foreach_in_collection asgn $asgn_col {
## Each element in the collection has the following
## format:
## { {<Source>} {<Destination>} {<Assignment name>} {<Assignment
# value>} {<Entity name>} }
set from [lindex $asgn 0]
set to [lindex $asgn 1]
set name [lindex $asgn 2]
set value [lindex $asgn 3]
set entity [lindex $asgn 4]
puts "$entity : $name ($from -> $to) = $value"
}
Przeglądanie stron 159
1 2 ... 155 156 157 158 159 160 161 162 163 164 165 ... 633 634

Komentarze do niniejszej Instrukcji

Brak uwag