beautypg.com

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

Page 242: Description, Example, Export_partition –112

background image

3–112

Chapter 3: Tcl Packages & Commands

incremental_compilation

Quartus II Scripting Reference Manual

© July 2013

Altera Corporation

export_partition

Usage

export_partition [-netlist_type ] -partition -qxp filename> [-routing ]

Options

-netlist_type : Netlist type

-partition : Partition name

-qxp : QXP fiilename

-routing : Export routing

Description

Exports the partition specified with the -partition option to a QXP file with the name specified by the -qxp
option.

Use the -netlist_type option to control which netlist to export. The supported values are "POST_SYNTH"
and "POST_FIT".

Use the -routing option to control whether routing should be included in the qxp. This option can only be
enabled if the netlist being exported is POST_FIT. The supported values are "on" and "off".

Example

package require ::quartus::incremental_compilation

project_open my_design

export_partition -partition my_partition -qxp top.qxp

project_close