mirror of https://github.com/openXC7/prjxray.git
Add utils.tcl, minor edits to switchboxes minitests
Signed-off-by: Clifford Wolf <clifford@clifford.at> Signed-off-by: Tim 'mithro' Ansell <mithro@mithis.com>
This commit is contained in:
parent
2fc2c0274d
commit
6f88afe92a
|
|
@ -46,7 +46,7 @@ proc tile_pip_report {fd tile_name} {
|
|||
set src_span [llength [get_tiles -of_objects $src_node]]
|
||||
puts $fd " Source Wire (Node, Span): $src ($src_node, $src_span) via $pip"
|
||||
}
|
||||
foreach pip [get_pips -filter "TILE != $tile" -uphill -of_objects $dst_node] {
|
||||
foreach pip [get_pips -quiet -filter "TILE != $tile" -uphill -of_objects $dst_node] {
|
||||
puts $fd " Outside Source PIP: $pip"
|
||||
}
|
||||
}
|
||||
|
|
@ -69,7 +69,7 @@ proc tile_pip_report {fd tile_name} {
|
|||
set src_span [llength [get_tiles -of_objects $src_node]]
|
||||
puts $fd " Source Wire (Node, Span): $src ($src_node, $src_span) via $pip"
|
||||
}
|
||||
foreach pip [get_pips -filter "TILE != $tile" -uphill -of_objects $dst_node] {
|
||||
foreach pip [get_pips -quiet -filter "TILE != $tile" -uphill -of_objects $dst_node] {
|
||||
puts $fd " Outside Source PIP: $pip"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
proc route_via {net nodes} {
|
||||
# FIXME
|
||||
}
|
||||
|
||||
proc putl {lst} {
|
||||
foreach line $lst {puts $line}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue