mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-05-30 00:24:12 +08:00
* Fix for OpenSTA issue 398 and OpenROAD issue 9454 with regression Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com> * Incorporated feedbacks from previous version Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com> * rename tests Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com> * remove unnecessary newline Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com> * Updated to use network_->portBitIterator Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com> --------- Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com>
10 lines
393 B
Tcl
10 lines
393 B
Tcl
read_liberty asap7_small.lib.gz
|
|
read_verilog verilog_unconnected_hpin.v
|
|
link_design top
|
|
puts "Find b1/out2: [get_full_name [get_pins b1/out2]]"
|
|
puts "Find b2/out2: [get_full_name [get_pins b2/out2]]"
|
|
# Check if net is connected to "b2/u3/Y" that was the b2/out2 in parent block
|
|
set iterm [sta::find_pin "b2/u3/Y"]
|
|
set net [get_net -of_object [get_pin $iterm]]
|
|
report_net [get_full_name $net]
|