mirror of https://github.com/openXC7/prjxray.git
write_io_banks.tcl: use a reliable way to distinguish high performance banks
Signed-off-by: Hans Baier <hansfbaier@gmail.com>
This commit is contained in:
parent
3ee0781314
commit
1b1ff89c16
|
|
@ -12,8 +12,7 @@ set fp [open "iobanks.txt" "w"]
|
||||||
foreach iobank [get_iobanks] {
|
foreach iobank [get_iobanks] {
|
||||||
foreach site [get_sites -of $iobank] {
|
foreach site [get_sites -of $iobank] {
|
||||||
# we only care about the high performance banks here
|
# we only care about the high performance banks here
|
||||||
# and those are numbered 32, 33, 34...
|
if {[string match "BT_HIGH_PERFORMANCE" [get_property BANK_TYPE $iobank]]} {
|
||||||
if {[string match "3*" $iobank]} {
|
|
||||||
puts $fp "$site,$iobank"
|
puts $fp "$site,$iobank"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue