Altera Quartus II Scripting Instrukcja Użytkownika Strona 422

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 634
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 421
3–292 Chapter 3: Tcl Packages & Commands
sdc
Quartus II Scripting Reference Manual © July 2013 Altera Corporation
set mycollection [get_cells *]
# Create a collection of all cells in the design
# Output cell names.
foreach_in_collection cell $mycollection {
puts [get_cell_info -name $cell]
}
set fullcollection [get_cells -hierarchical *]
# Output cell IDs and names.
foreach_in_collection cell $fullcollection {
puts -nonewline $cell
puts -nonewline ": "
puts [get_cell_info -name $cell]
}
Przeglądanie stron 421
1 2 ... 417 418 419 420 421 422 423 424 425 426 427 ... 633 634

Komentarze do niniejszej Instrukcji

Brak uwag