Intel® Quartus® Prime Pro Edition User Guide: Platform Designer

ID 683609
Date 9/26/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

9.1.3.3. get_domain_assignments

Description

Returns all domain assignments for the given domain as a list of strings. Each "group" of three elements in the list contains the element name, assignment name, and value, in that order. Element name in the output is the input element name. If the input element is $system, then the output element name is the connection point in the domain. The Returns section shows a typical list.

Returns

[element0 name0 value0 element1 name1 value1 ... ]

In TCL, you'd loop over the list by writing a foreach loop:

 foreach {element name value } \
     $requirement_list { puts " $element $name $value" }

Availability

Composition

Usage

get_domain_assignments <element>

Arguments

element
Connection or interface in the domains for which you want to get the assignments value. If you specify $system as the element, the command returns values of all the domains in the system.