-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvivado_build_100t.tcl
More file actions
26 lines (26 loc) · 1.37 KB
/
vivado_build_100t.tcl
File metadata and controls
26 lines (26 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# RUN FROM WITHIN "Vivado Tcl Shell" WITH COMMAND:
# source vivado_build.tcl -notrace
#
puts "-------------------------------------------------------"
puts " STARTING SYNTHESIS STEP. "
puts "-------------------------------------------------------"
launch_runs -jobs 6 synth_1
puts "-------------------------------------------------------"
puts " WAITING FOR SYNTHESIS STEP TO FINISH ... "
puts " THIS IS LIKELY TO TAKE A VERY LONG TIME. "
puts "-------------------------------------------------------"
wait_on_run synth_1
puts "-------------------------------------------------------"
puts " STARTING IMPLEMENTATION STEP. "
puts "-------------------------------------------------------"
launch_runs -jobs 4 impl_1 -to_step write_bitstream
puts "-------------------------------------------------------"
puts " WAITING FOR IMPLEMENTATION STEP TO FINISH ... "
puts " THIS IS LIKELY TO TAKE A VERY LONG TIME. "
puts "-------------------------------------------------------"
wait_on_run impl_1
file copy -force ./pcileech_tbx4_100t/pcileech_tbx4_100t.runs/impl_1/pcileech_tbx4_100t_top.bin pcileech_zdma_100t_fpga0.bin
puts "-------------------------------------------------------"
puts " BUILD HOPEFULLY COMPLETED. "
puts "-------------------------------------------------------"