Skip to content
Snippets Groups Projects
Commit 3bb2227c authored by James Talbert's avatar James Talbert
Browse files

Update Creating_and_maintaining_new_Vivado_project.md

parent 0e64eea1
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ This is done by removeing the follwoing lines from the .tcl file
```
# Import local files from the original project
set files [list \
[file normalize "${origin_dir}/PWM_Recorder_Tests/PWM_Recorder_Tests.srcs/sources_1/bd/design_1/hdl/design_1_wrapper.vhd" ]\
[file normalize "${origin_dir}/<project_name>/<project_name>.srcs/sources_1/bd/design_1/hdl/design_1_wrapper.vhd" ]\
]
set imported_files [import_files -fileset sources_1 $files]
......@@ -33,7 +33,7 @@ and adding the following at the end of the file:
Additionally, you need to make the constraints file a remote source, not a local one.
Replace
````
set file "[file normalize "$origin_dir/PWM_Recorder_Tests/src/constrs/Zybo-Z7-Master.xdc"]"
set file "[file normalize "$origin_dir/<project_name>/src/constrs/Zybo-Z7-Master.xdc"]"
set file_imported [import_files -fileset constrs_1 [list $file]]
set file "constrs/Zybo-Z7-Master.xdc"
set file_obj [get_files -of_objects [get_filesets constrs_1] [list "*$file"]]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment