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

8.12.3.6. get_interface_assignments

Description

Obtains all interface interconnect assignments for the given domain as a list of strings. Each "group" of three elements in the list contains the interface name, assignment name, and value (in that order). For example, typical list contents might look like this:
[interface0 name0 value0 interface1 name1 value1 ... ]
In TCL, you'd loop over the list by writing a foreach loop:
foreach {interface name value } $requirement_list \
     { puts " $interface $name $value" }

Usage

get_interface_assignments <interface>

Arguments

interface
Interface name that you want to get assignments for. If interface is specified as $system , it gives assignments of all the interfaces in the system.
assignment
The name of the assignment.