Skip to content
Snippets Groups Projects
Commit b5dccf0f authored by Felix Jentzsch's avatar Felix Jentzsch
Browse files

Fix FIFO OOC synth

parent 7fd6a640
No related branches found
No related tags found
No related merge requests found
......@@ -535,7 +535,8 @@ class CreateStitchedIP(Transformation):
# export list of used Verilog files (for rtlsim later on)
tcl.append(
"set all_v_files [get_files -filter {USED_IN_SYNTHESIS == 1 "
+ "&& (FILE_TYPE == Verilog || FILE_TYPE == SystemVerilog)}]"
+ "&& (FILE_TYPE == Verilog || FILE_TYPE == SystemVerilog "
+ "|| FILE_TYPE ==\"Verilog Header\")}]"
)
v_file_list = "%s/all_verilog_srcs.txt" % vivado_stitch_proj_dir
tcl.append("set fp [open %s w]" % v_file_list)
......
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