adding decoder logic

This commit is contained in:
Arnav Sacheti
2025-10-16 22:35:36 -07:00
parent 2937624ee7
commit 0c66453ba0
19 changed files with 354 additions and 326 deletions

View File

@@ -101,6 +101,7 @@ class Exporter(ExporterSubcommandPlugin):
arg_group.add_argument(
"--unroll",
action="store_true",
default=False,
help="""Unroll arrayed addressable nodes into separate instances in
the CPU interface. By default, arrayed nodes are kept as arrays.
""",
@@ -117,5 +118,5 @@ class Exporter(ExporterSubcommandPlugin):
module_name=options.module_name,
package_name=options.package_name,
address_width=options.addr_width,
unroll=options.unroll,
cpuif_unroll=options.unroll,
)