Altera Quartus II Scripting Instrukcja Użytkownika Strona 333

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 634
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 332
Chapter 3: Tcl Packages & Commands 3–203
project
© July 2013 Altera Corporation Quartus II Scripting Reference Manual
set name [lindex $default 1]
set value [lindex $default 2]
## Now, display the content of the assignment
puts "Section ID ($sect_id)"
puts "Assignment Name ($name)"
puts "Assignment Value ($value)"
}
## Using wildcards
set default_asgns_col [get_all_quartus_defaults -name *]
foreach_in_collection default $default_asgns_col {
set sect_id [lindex $default 0]
set name [lindex $default 1]
set value [lindex $default 2]
## Now, display the content of the assignment
puts "Section ID ($sect_id)"
puts "Assignment Name ($name)"
puts "Assignment Value ($value)"
}
Przeglądanie stron 332
1 2 ... 328 329 330 331 332 333 334 335 336 337 338 ... 633 634

Komentarze do niniejszej Instrukcji

Brak uwag