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

ID 683609
Date 6/20/2022
Public

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

Document Table of Contents

8.12.3.3. get_domain_assignments

Description

Obtains 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. For example, typical list contents appear like this:
[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" }

Usage

get_domain_assignments <element>

Arguments

element
Connection or interface in the domain for which you want to get assignments. If element is specified as $system, gives values of all the domains in the system.