Skip to content
Snippets Groups Projects

Use HTML tables for architecture blocks

Merged Hugo Winbladh requested to merge 252-use-html-tables-for-architecture-blocks into master
2 files
+ 5
5
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 3
3
@@ -204,8 +204,8 @@ class Resource(HardwareBlock):
]
ret += f"<TR>{''.join(in_strs)}</TR>"
ret += (
'<TR><TD'
f' COLSPAN="{table_width}">{self.entity_name}{self._info()}</TD></TR>'
f'<TR><TD COLSPAN="{table_width}">'
f'<B>{self.entity_name}{self._info()}</B></TD></TR>'
)
if outputs:
out_strs = [
@@ -987,7 +987,7 @@ of :class:`~b_asic.architecture.ProcessingElement`
name = f"{destination.replace(':', '_')}_mux"
ret += (
f'<TR><TD COLSPAN="{len(inputs)}"'
f' PORT="{name}">{name}</TD></TR>'
f' PORT="{name}"><B>{name}</B></TD></TR>'
)
ret += f'<TR><TD COLSPAN="{len(inputs)}" PORT="out0">out0</TD></TR>'
dg.node(
Loading