Altera Quartus II Scripting Uživatelský manuál Strana 426

  • Stažení
  • Přidat do mých příruček
  • Tisk
  • Strana
    / 634
  • Tabulka s obsahem
  • KNIHY
  • Hodnocené. / 5. Na základě hodnocení zákazníků
Zobrazit stránku 425
3–296 Chapter 3: Tcl Packages & Commands
sdc
Quartus II Scripting Reference Manual © July 2013 Altera Corporation
get_pins reg|*
# Create a collection of all pins on the highest hierarachical level
set mycollection [get_pins *]
# Output pin names.
foreach_in_collection pin $mycollection {
puts [get_pin_info -name $pin]
}
# Create a collection of all pins in the design
set fullcollection [get_pins -hierarchical *]
# Output pin IDs and names.
foreach_in_collection pin $fullcollection {
puts -nonewline $pin
puts -nonewline ": "
puts [get_pin_info -name $pin]
}
Zobrazit stránku 425
1 2 ... 421 422 423 424 425 426 427 428 429 430 431 ... 633 634

Komentáře k této Příručce

Žádné komentáře