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 1.0 |
|||
| 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 | ||