unplace_node (::quartus::eco)

The following table displays information for the unplace_node Tcl command:

Tcl Package and Version

Belongs to ::quartus::eco 1.0

Syntax unplace_node [-h | -help] [-long_help] [-name <node_name> ] [-node <node_id> ]
Arguments -h | -help Short help
-long_help Long help with examples and possible return values
-name <node_name> Name of the node to unplace
-node <node_id> Node ID
Description
The unplace_node command will unplace a given node.
Example Usage
unplace_node -name my_ff

# unplace all nodes of type FF
project_open top
eco_load_design
set nodes [get_netlist_nodes -type FF]
foreach_in_collection i $nodes {
    unplace_node -node $i
}
Return Value Code Name Code String Return
TCL_OK 0 INFO: Operation successful