Set_logiclock, Usage, Options – Altera Quartus II Scripting User Manual
Page 250: Description, Example, Set_logiclock –120

3–120
Chapter 3: Tcl Packages & Commands
incremental_compilation
Quartus II Scripting Reference Manual
© July 2013
Altera Corporation
set_logiclock
Usage
set_logiclock [-auto_size
[-width
Options
-auto_size
-enabled
-floating
-height
-origin
-parent
-region
-reserved
-soft
-width
Description
Creates or changes attributes of LogicLock™regions.
If the region specified by the "-region" option does not exist, the Quartus®II software creates it with the
specified properties.
Otherwise, the Quartus II software changes the properties of the region specified by the "-region" option to
the values specified by the options. Any properties not included as options remain unchanged.
Example
package require ::quartus::incremental_compilation
project_open my_design
## Create a region with default attributes
set_logiclock -region region_one
## Change the size of the region
set_logiclock -region region_one -height 2 -width 3
project_close