alexislms
Contributor
1 year agoget_ports of entity-bound returns TOP level ports
I have an SDC file to constraint instances
set_global_assignment -name SDC_ENTITY_FILE cdc_handshake.sdc -entity cdc_handshake
set ports [get_ports * -nocase]
foreach_in_collection port $ports {
set name [get_port_info -name $port]
puts "$name"
}
returns all the ports of the TOP level, not the ports of the instance
How to get the ports of the instance?
Same results with get_clocks but get_cells correctly returns only cells of the instance.