beautypg.com

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

Page 250: Description, Example, Set_logiclock –120

background image

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 ] [-enabled ] [-floating
] [-height ] [-origin ] [-parent region name>] -region [-reserved ] [-soft ]
[-width ]

Options

-auto_size : Option to set auto-size property

-enabled : Option to set enabled property

-floating : Option to set floating property

-height : Region height

-origin : Region origin

-parent : Parent region

-region : Region name

-reserved : Option to set reserved property

-soft : Option to set soft property

-width : Region 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