Intel® Quartus® Prime Pro Edition User Guide: Scripting

ID 683432
Date 4/03/2023
Public

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

Document Table of Contents

4.1.10.11. get_lutmask_equation (::quartus::eco)

The following table displays information for the get_lutmask_equation Tcl command:

Tcl Package and Version

Belongs to ::quartus::eco

Syntax get_lutmask_equation [-h | -help] [-long_help] [-name <name> ] [-node <node_id> ]
Arguments -h | -help Short help
-long_help Long help with examples and possible return values
-name <name> name of the lut
-node <node_id> Node ID
Description
The get_lutmask_equation command reports the LUT equation of a given LUT.
Example Usage
get_lutmask_equation -name <name_string>

# print lutmask equation of all nodes of type lcell_comb
project_open top
eco_load_design
set nodes [get_netlist_nodes -type lcell_comb]
foreach_in_collection i $nodes {
    get_lutmask_equation -node $i
}
project_close
Return Value Code Name Code String Return
TCL_OK 0 INFO: Operation successful