This package implements Python register abstraction layer export for the PeakRDL toolchain.
- Export: Convert compiled SystemRDL input into Python register interface.
For the command line tool, see the PeakRDL project.
The basic install comes without the exporter capability, so that the package
can be installed on low-end devices without the need to install
systemrdl-compiler
. To have the generator capability install with generator
extra:
$ pip install peakrdl-python-simple[generator]
PeakRDL project provides a standard CLI interface. It can be installed directly
via pip or by installing this package with cli
extra:
$ pip install peakrdl-python-simple[cli]
Then this package can be used with the following command:
$ peakrdl python-simple input_file.rdl -o output_interface.py
See the PeakRDL-Python-simple Documentation for more details.