Altera Quartus II Scripting User Manual Page 426

  • Download
  • Add to my manuals
  • Print
  • Page
    / 634
  • Table of contents
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 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]
}
Page view 425
1 2 ... 421 422 423 424 425 426 427 428 429 430 431 ... 633 634

Comments to this Manuals

No comments