gen/fhdl/hierarchy: Use ** for BlackBox for black/white consoles.
This commit is contained in:
parent
f43b92103a
commit
3269d12a27
|
@ -44,13 +44,13 @@ class LiteXHierarchyExplorer:
|
||||||
if s in v._fragment.specials:
|
if s in v._fragment.specials:
|
||||||
show = False
|
show = False
|
||||||
if show:
|
if show:
|
||||||
r += f"{self.tree_ident*ident}{self.tree_entry}{colorer(s.of + '*', 'yellow')}\n"
|
r += f"{self.tree_ident*ident}{self.tree_entry}{colorer(s.of + '**', 'yellow')}\n"
|
||||||
return r
|
return r
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
r = "\n"
|
r = "\n"
|
||||||
r += f"{colorer(self.top.__class__.__name__, 'underline')}\n"
|
r += f"{colorer(self.top.__class__.__name__, 'underline')}\n"
|
||||||
r += self.get_tree(self.top)
|
r += self.get_tree(self.top)
|
||||||
r += f"{colorer('*', 'cyan')}: Generated name.\n"
|
r += f"{colorer('* ', 'cyan')}: Generated name.\n"
|
||||||
r += f"{colorer('*', 'yellow')}: BlackBox.\n"
|
r += f"{colorer('**', 'yellow')}: BlackBox.\n"
|
||||||
return r
|
return r
|
||||||
|
|
Loading…
Reference in New Issue