gen/fhdl/verilog: Ensure top is not None to build hierarchy.

This commit is contained in:
Florent Kermarrec 2023-11-08 16:57:21 +01:00
parent 862a0dbbbf
commit 4610713797
1 changed files with 10 additions and 7 deletions

View File

@ -90,6 +90,9 @@ def _generate_timescale(time_unit="1ns", time_precision="1ps"):
# ------------------------------------------------------------------------------------------------ #
def _generate_hierarchy(top):
if top is None:
return ""
else:
hierarchy_explorer = LiteXHierarchyExplorer(top=top, depth=None, with_colors=False)
r = "/*\n"
for l in hierarchy_explorer.get_hierarchy().split("\n"):