mirror of https://github.com/openXC7/prjxray.git
Remove TESTPLL nodes from piplist.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
parent
57b897a670
commit
6357913927
|
|
@ -23,6 +23,11 @@ proc print_tile_pips {tile_type filename} {
|
|||
continue
|
||||
}
|
||||
|
||||
# Some ports appear to be just test signals, ignore these.
|
||||
if [string match *TESTPLL* $src_node] {
|
||||
continue
|
||||
}
|
||||
|
||||
if {[llength [get_nodes -uphill -of_objects [get_nodes -of_objects $dst]]] != 1} {
|
||||
set pip_string "$tile_type.[regsub {.*/} $dst ""].[regsub {.*/} $src ""]"
|
||||
if ![dict exists $pips $pip_string] {
|
||||
|
|
|
|||
Loading…
Reference in New Issue