Altera Quartus II Scripting Manual do Utilizador Página 325

  • Descarregar
  • Adicionar aos meus manuais
  • Imprimir
  • Página
    / 634
  • Índice
  • MARCADORES
  • Avaliado. / 5. Com base em avaliações de clientes
Vista de página 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 página 324
1 2 ... 320 321 322 323 324 325 326 327 328 329 330 ... 633 634

Comentários a estes Manuais

Sem comentários