Altera Quartus II Scripting User Manual

Page 325

Advertising
background image

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"
}

Advertising