Set_io_assignment, Usage, Options – Altera Quartus II Scripting User Manual
Page 369: Description, Example, Set_io_assignment –239

Chapter 3: Tcl Packages & Commands
3–239
project
© July 2013
Altera Corporation
Quartus II Scripting Reference Manual
set_io_assignment
Usage
set_io_assignment [-comment
Options
-comment
-disable: Option to disable assignment
-io_standard
-name
-remove: Option to remove assignment
-tag : Option to tag data to this assignment
Description
Sets or removes an io assignment.
Assignments created or modified by using this Tcl command are not saved to the Quartus II Settings File
(.qsf) unless you explicitly call one of the following two Tcl commands:
■
export_assignments
■
project_close (unless "-dont_export_assignments" is specified)
These two Tcl commands reside in the ::quartus::project Tcl package. You must save assignment changes
before you run Quartus®II command-line executables. Note, however, that the Tcl commands
"execute_flow" and "execute_module" (part of the ::quartus::flow Tcl package) automatically call
"export_assignments" before they run command-line executables.
Example
## Specify LVTTL as the IO Standard for OUTPUT_PIN_LOAD assignment
set_io_assignment 30 -name OUTPUT_PIN_LOAD -io_standard LVTTL
