Altera Quartus II Scripting Manual de usuario Pagina 325

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 634
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 324
Chapter 3: Tcl Packages & Commands 3–195
project
© July 2013 Altera Corporation Quartus II Scripting Reference Manual
}
## View all entity-specific parameter values
foreach_in_collection asgn_id \
[get_all_assignments -type parameter -name * -to *] {
set dest [get_assignment_info $asgn_id -to]
set name [get_assignment_info $asgn_id -name]
set value [get_assignment_info $asgn_id -value]
set tag [get_assignment_info $asgn_id -tag]
puts "$name (-> $dest) = $value"
}
## View all default assignments
foreach_in_collection asgn_id \
[get_all_assignments -type default -name * -to *] {
set name [get_assignment_info $asgn_id -name]
set value [get_assignment_info $asgn_id -value]
puts "$name = $value"
}
Vista de pagina 324
1 2 ... 320 321 322 323 324 325 326 327 328 329 330 ... 633 634

Comentarios a estos manuales

Sin comentarios