Set_location_assignment, Usage, Options – Altera Quartus II Scripting User Manual

Page 370: Description, Example, Set_location_assignment –240

Advertising
background image

3–240

Chapter 3: Tcl Packages & Commands

project

Quartus II Scripting Reference Manual

© July 2013

Altera Corporation

set_location_assignment

Usage

set_location_assignment [-comment <comment>] [-disable] [-remove] [-tag <data>] -to
<destination> <value>

Options

-comment <comment>: Comment

-disable: Option to disable assignment

-remove: Option to remove assignment

-tag <data>: Option to tag data to this assignment

-to <destination>: Destination of assignment

<value>: Assignment value

Description

Sets or removes a location 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

set_location_assignment -to dst LOC

Advertising