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

Page 224: Description, Example, Get_part_list –94

Advertising
background image

3–94

Chapter 3: Tcl Packages & Commands

device

Quartus II Scripting Reference Manual

© July 2013

Altera Corporation

get_part_list

Usage

get_part_list [-device <value>] [-family <value>] [-package <value>] [-pin_count
<value>] [-speed_grade <value>]

Options

-device <value>: Option to match device name

-family <value>: Option to match family name

-package <value>: Option to match package name

-pin_count <value>: Option to match pin count

-speed_grade <value>: Option to match speed grade

Description

Returns a list of available parts based on the options that are specified. Examples are as follows:

Return a list of all supported parts

get_part_list

Return a list of all supported parts for Cyclone

get_part_list -family Cyclone

Return a list of all supported parts with the FBGA package and 780 pins

get_part_list -package fbga -pin_count 780

Example

get_part_list -family Stratix

Advertising