File size: 381 Bytes
f5dbfe6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # Set the project name and file paths
set project_name "controller_firmware"
set project_path "S:/Vivado/controller_firmware"
set export_script_path "S:/Vivado/controller_firmware.tcl"
# Open the Vivado project
open_project $project_path/$project_name.xpr
# Export the project to a Tcl script
write_project_tcl -force $export_script_path
# Close the Vivado project
close_project |