All checks were successful
build / test (3.10) (push) Successful in 6s
build / test (3.11) (push) Successful in 6s
build / test (3.12) (push) Successful in 6s
build / test (3.13) (push) Successful in 6s
build / test (3.9) (push) Successful in 6s
build / lint (push) Successful in 7s
build / mypy (push) Successful in 8s
build / test (3.10) (release) Successful in 6s
build / test (3.11) (release) Successful in 6s
build / test (3.12) (release) Successful in 6s
build / test (3.13) (release) Successful in 6s
build / test (3.9) (release) Successful in 6s
build / lint (release) Successful in 8s
build / mypy (release) Successful in 8s
build / Build distributions (push) Successful in 7s
build / Build distributions (release) Successful in 8s
build / deploy (push) Has been skipped
build / deploy (release) Successful in 6s
26 lines
576 B
Python
26 lines
576 B
Python
from typing import TYPE_CHECKING
|
|
|
|
from peakrdl.plugins.exporter import ExporterSubcommandPlugin
|
|
|
|
from .exporter import PythonRegmapExporter
|
|
|
|
if TYPE_CHECKING:
|
|
import argparse
|
|
from systemrdl.node import AddrmapNode
|
|
|
|
class Exporter(ExporterSubcommandPlugin):
|
|
short_desc = "Generate a Python regmap definition of an address space"
|
|
|
|
cfg_schema = {
|
|
}
|
|
|
|
|
|
|
|
def do_export(self, top_node: 'AddrmapNode', options: 'argparse.Namespace') -> None:
|
|
|
|
x = PythonRegmapExporter()
|
|
x.export(
|
|
top_node,
|
|
path=options.output
|
|
)
|