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

Fix top module setting in CreateStitchedIP

parent e2ab21d0
No related branches found
No related tags found
No related merge requests found
......@@ -412,7 +412,7 @@ class CreateStitchedIP(Transformation):
wrapper_filename = "%s/hdl/%s_wrapper.v" % (bd_base, block_name)
tcl.append("add_files -norecurse %s" % wrapper_filename)
model.set_metadata_prop("wrapper_filename", wrapper_filename)
tcl.append("set_property top finn_design_wrapper [current_fileset]")
tcl.append("set_property top %s_wrapper [current_fileset]" % block_name)
# synthesize to DCP and export stub, DCP and constraints
if self.vitis:
tcl.append(
......
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