mirror of https://github.com/openXC7/prjxray.git
17 lines
599 B
Tcl
17 lines
599 B
Tcl
|
|
set sites [get_sites -filter {(SITE_TYPE == "SLICEL" || SITE_TYPE == "SLICEM") && (NAME =~ "*Y0" || NAME =~ "*Y50" || NAME =~ "*Y?00" || NAME =~ "*Y?50")}]
|
|
|
|
foreach site $sites {
|
|
puts ""; puts ""; puts ""; puts ""; puts ""; puts ""
|
|
puts "=========================== $site ==========================="
|
|
|
|
set_property LOC $site [get_cells lut]
|
|
route_design
|
|
|
|
set_property INIT 64'h8000000000000000 [get_cells lut]
|
|
write_bitstream -force logicframes_${site}_0.bit
|
|
|
|
set_property INIT 64'h8000000000000001 [get_cells lut]
|
|
write_bitstream -force logicframes_${site}_1.bit
|
|
}
|