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

Page 250: Description, Example, Set_logiclock –120

Advertising
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 <true|false>] [-enabled <true|false>] [-floating
<true|false>] [-height <height in labs>] [-origin <chip location>] [-parent <parent
region name>] -region <region name> [-reserved <true|false>] [-soft <true|false>]
[-width <width in labs>]

Options

-auto_size <true|false>: Option to set auto-size property

-enabled <true|false>: Option to set enabled property

-floating <true|false>: Option to set floating property

-height <height in labs>: Region height

-origin <chip location>: Region origin

-parent <parent region name>: Parent region

-region <region name>: Region name

-reserved <true|false>: Option to set reserved property

-soft <true|false>: Option to set soft property

-width <width in labs>: 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

Advertising