Increment version

This commit is contained in:
Alex Mykyta
2025-04-11 21:26:27 -07:00
parent c3080d63ce
commit 06bd567750
2 changed files with 5 additions and 24 deletions

View File

@@ -10,35 +10,16 @@ your hardware design.
* Options for many popular CPU interface protocols (AMBA APB, AXI4-Lite, and more) * Options for many popular CPU interface protocols (AMBA APB, AXI4-Lite, and more)
* Configurable pipelining options for designs with fast clock rates. * Configurable pipelining options for designs with fast clock rates.
* Broad support for SystemRDL 2.0 features * Broad support for SystemRDL 2.0 features
* Fully synthesizable SystemVerilog. Tested on Xilinx/AMD's Vivado & Intel Quartus
.. warning::
The PeakRDL-regblock SV generator is still in pre-production (v0.x version numbers).
During this time, I may decide to refactor things which could affect compatibility.
Installing Quick Start
---------- -----------
Install from `PyPi`_ using pip
.. code-block:: bash
python3 -m pip install peakrdl-regblock
.. _PyPi: https://pypi.org/project/peakrdl-regblock
Example
-------
The easiest way to use PeakRDL-regblock is via the `PeakRDL command line tool <https://peakrdl.readthedocs.io/>`_: The easiest way to use PeakRDL-regblock is via the `PeakRDL command line tool <https://peakrdl.readthedocs.io/>`_:
.. code-block:: bash .. code-block:: bash
# Install the command line tool # Install PeakRDL-regblock along with the command-line tool
python3 -m pip install peakrdl python3 -m pip install peakrdl-regblock[cli]
# Export! # Export!
peakrdl regblock atxmega_spi.rdl -o regblock/ --cpuif axi4-lite peakrdl regblock atxmega_spi.rdl -o regblock/ --cpuif axi4-lite

View File

@@ -1,2 +1,2 @@
version_info = (0, 23, 0) version_info = (1, 0, 0)
__version__ = ".".join([str(n) for n in version_info]) __version__ = ".".join([str(n) for n in version_info])