diff --git a/litex/build/lattice/diamond.py b/litex/build/lattice/diamond.py index c3065fe20..bfc72fbbe 100644 --- a/litex/build/lattice/diamond.py +++ b/litex/build/lattice/diamond.py @@ -52,6 +52,7 @@ def _build_files(device, sources, vincpaths, build_name): tcl.append("prj_impl option {include path} {\"" + path + "\"}") for filename, language, library in sources: tcl.append("prj_src add \"" + filename + "\" -work " + library) + tcl.append("prj_impl option top \"{}\"".format(build_name)) tcl.append("prj_run Synthesis -impl implementation -forceOne") tcl.append("prj_run Translate -impl implementation") tcl.append("prj_run Map -impl implementation")