Skip to content

Commit 8e833c1

Browse files
committed
updated many missed references to systemverilog exporter
1 parent 6ff78ef commit 8e833c1

File tree

11 files changed

+16
-15
lines changed

11 files changed

+16
-15
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to the PeakRDL-regblock code generator
1+
# Contributing to the PeakRDL-regblock-vhdl code generator
22
We love your input! We want to make contributing to this project as easy and
33
transparent as possible, whether it's:
44

@@ -9,13 +9,14 @@ transparent as possible, whether it's:
99
- Becoming a maintainer
1010

1111

12-
## Open an issue using the [Issue Tracker](https://github.com/SystemRDL/PeakRDL-regblock/issues)
12+
## Open an issue using the [Issue Tracker](https://github.com/SystemRDL/PeakRDL-regblock-vhdl/issues)
1313
Talking to us is the easiest way to contribute! Report a bug or feature request by
14-
[opening a new issue](https://github.com/SystemRDL/PeakRDL-regblock/issues).
14+
[opening a new issue](https://github.com/SystemRDL/PeakRDL-regblock-vhdl/issues).
1515

1616
Issue submission expectations:
1717
* Please keep each issue submission limited to one topic. This helps us stay organized.
1818
* Before opening an issue, check if one already exists for your topic. It may have already been discussed.
19+
* Check the upstream SystemVerilog regblock exporter [issue tracker](https://github.com/SystemRDL/PeakRDL-regblock/issues) as well.
1920
* If submitting a bug, provide enough details so we can reproduce it on our end. (version number, example SystemRDL, etc...)
2021
* If submitting a feature request, please make sure ...
2122
* ... it does not violate the semantics of the SystemRDL standard.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
# -- Project information -----------------------------------------------------
2020

21-
project = 'PeakRDL-regblock'
21+
project = 'PeakRDL-regblock-vhdl'
2222
copyright = '%d, Alex Mykyta' % datetime.datetime.now().year
2323
author = 'Alex Mykyta'
2424

docs/cpuif/apb.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ CPU interface.
4747

4848
The APB4 CPU interface comes in two i/o port flavors:
4949

50-
SystemVerilog Interface
50+
VHDL Record Interface
5151
* Command line: ``--cpuif apb4``
5252
* Interface Definition: :download:`apb4_intf_pkg.vhd <../../hdl-src/apb4_intf_pkg.vhd>`
5353
* Class: :class:`peakrdl_regblock_vhdl.cpuif.apb4.APB4_Cpuif`

docs/cpuif/customizing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Via a package's entry point definition
106106
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
107107
If you are publishing a collection of PeakRDL plugins as an installable Python
108108
package, you can advertise them to PeakRDL using an entry point.
109-
This advertises your custom CPUIF class to the PeakRDL-regblock tool as a plugin
109+
This advertises your custom CPUIF class to the PeakRDL-regblock-vhdl tool as a plugin
110110
that should be loaded, and made available as a command-line option in PeakRDL.
111111

112112
.. code-block:: toml
@@ -116,7 +116,7 @@ that should be loaded, and made available as a command-line option in PeakRDL.
116116
117117
118118
* ``my_package``: The name of your installable Python module
119-
* ``peakrdl-regblock-vhdl.cpuif``: This is the namespace that PeakRDL-regblock will
119+
* ``peakrdl-regblock-vhdl.cpuif``: This is the namespace that PeakRDL-regblock-vhdl will
120120
search. Any cpuif plugins you create must be enclosed in this namespace in
121121
order to be discovered.
122122
* ``my_package.my_module:MyCPUIF``: This is the import path that

docs/udps/extended_swacc.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ functionality.
1515

1616
Properties
1717
----------
18-
These UDP definitions, along with others supported by PeakRDL-regblock can be
18+
These UDP definitions, along with others supported by PeakRDL-regblock-vhdl can be
1919
enabled by compiling the following file along with your design:
2020
:download:`regblock_udps.rdl <../../hdl-src/regblock_udps.rdl>`.
2121

docs/udps/intro.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Although the official SystemRDL spec defines numerous properties that allow you
55
to define complex register map structures, sometimes they are not enough to
66
accurately describe a necessary feature. Fortunately the SystemRDL spec allows
77
the language to be extended using "User Defined Properties" (UDPs). The
8-
PeakRDL-regblock tool understands several UDPs that are described in this
8+
PeakRDL-regblock-vhdl tool understands several UDPs that are described in this
99
section.
1010

1111
To enable these UDPs, compile this RDL file prior to the rest of your design:

docs/udps/read_buffering.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ properties:
2727
.. literalinclude:: ../../hdl-src/regblock_udps.rdl
2828
:lines: 10-18
2929

30-
These UDP definitions, along with others supported by PeakRDL-regblock can be
30+
These UDP definitions, along with others supported by PeakRDL-regblock-vhdl can be
3131
enabled by compiling the following file along with your design:
3232
:download:`regblock_udps.rdl <../../hdl-src/regblock_udps.rdl>`.
3333

docs/udps/write_buffering.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ properties:
3333
.. literalinclude:: ../../hdl-src/regblock_udps.rdl
3434
:lines: 20-28
3535

36-
These UDP definitions, along with others supported by PeakRDL-regblock can be
36+
These UDP definitions, along with others supported by PeakRDL-regblock-vhdl can be
3737
enabled by compiling the following file along with your design:
3838
:download:`regblock_udps.rdl <../../hdl-src/regblock_udps.rdl>`.
3939

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ cli = [
4545
Source = "https://github.com/SystemRDL/PeakRDL-regblock-vhdl"
4646
Tracker = "https://github.com/SystemRDL/PeakRDL-regblock-vhdl/issues"
4747
Changelog = "https://github.com/SystemRDL/PeakRDL-regblock-vhdl/releases"
48-
Documentation = "https://peakrdl-regblock.readthedocs.io/"
48+
Documentation = "https://peakrdl-regblock-vhdl.readthedocs.io/"
4949

5050
[tool.setuptools.dynamic]
5151
version = {attr = "peakrdl_regblock_vhdl.__about__.__version__"}

src/peakrdl_regblock_vhdl/validate_design.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def enter_Field(self, node: 'FieldNode') -> None:
137137
f"Software-writable field '{node.inst_name}' shall not span"
138138
" multiple software-accessible subwords. Consider enabling"
139139
" write double-buffering.\n"
140-
"For more details, see: https://peakrdl-regblock.readthedocs.io/en/latest/udps/write_buffering.html",
140+
"For more details, see: https://peakrdl-regblock-vhdl.readthedocs.io/en/latest/udps/write_buffering.html",
141141
node.inst.inst_src_ref
142142
)
143143

@@ -149,7 +149,7 @@ def enter_Field(self, node: 'FieldNode') -> None:
149149
" subwords and is modified on-read, making it impossible to"
150150
" access its value correctly. Consider enabling read"
151151
" double-buffering. \n"
152-
"For more details, see: https://peakrdl-regblock.readthedocs.io/en/latest/udps/read_buffering.html",
152+
"For more details, see: https://peakrdl-regblock-vhdl.readthedocs.io/en/latest/udps/read_buffering.html",
153153
node.inst.inst_src_ref
154154
)
155155

0 commit comments

Comments
 (0)