1 set fo [open "${pahtPrefix}fixedUnits" "w"]
3 set fixedUnits [get_cells $allCells -filter {IS_LOC_FIXED == true}]
5 foreach curCell $fixedUnits {
6 set tmpLoc [get_property LOC $curCell]
7 set tmpBEL [get_property BEL $curCell]
8 puts $fo "name=> $curCell loc=> $tmpLoc bel=> $tmpBEL"