Xilinx 8.2i New create a new ISE project, Open open an ISE project, Project new watchver.ise

Models: 8.2i

1 422
Download 422 pages 26.35 Kb
Page 66
Image 66

Chapter 3: Tcl

R

instance_name specifies the name of the instance you wish to know the available processes for.

Example:

% project get_processes [-instance Inst_dcm1]

 

 

Description:

In this example, the project get_processes command is used to list all

 

of the available processes for only the instance, Inst_dcm1.

 

 

Tcl Return:

The available processes as a text string. In this example, a list of

 

processes for Inst_dcm1 is returned.

 

 

new (create a new ISE project)

The project new command creates a new ISE project.

% project new <project_name>

project is the name of the Xilinx Tcl command.

new is the name of the project subcommand.

project_name specifies the name for the ISE project you wish to create.

Example:

% project new watchver.ise

 

 

Description:

In this example, a new ISE project named watchver.ise is created in

 

the current directory.

Tcl Return:

The name of the new ISE project.

open (open an ISE project)

The project open command opens an existing ISE project. If the project does not exist, an error message to create a new project with the project new command appears.

% project open <project_name>

project is the name of the Xilinx Tcl command.

open is the name of the project subcommand.

project_name specifies the name for the ISE project you wish to open.

Example:

% project open watchver.ise

 

 

Description:

In this example, the watchver.ise project in the current directory is

 

opened.

Tcl Return:

The name of the open ISE project.

66

www.xilinx.com

Development System Reference Guide

Page 66
Image 66
Xilinx 8.2i manual New create a new ISE project, Open open an ISE project, Project getprocesses -instance Instdcm1