Altera Quartus II Scripting Manual de usuario Pagina 160

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 634
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 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"
}
Vista de pagina 159
1 2 ... 155 156 157 158 159 160 161 162 163 164 165 ... 633 634

Comentarios a estos manuales

Sin comentarios