Skip to content

Commit 3c87b2b

Browse files
authored
Merge pull request #11 from lowRISC/develop
Fix typos
2 parents 9f4b277 + c15c855 commit 3c87b2b

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# BenevisRdl
2-
This repository will house PeakRdl plugins, named after Ben Nevis, the UK's tallest peak.
1+
# BenevisRDL
2+
This repository will house PeakRDL plugins, named after Ben Nevis, the UK's tallest peak.
33

44
## Installing dependencies
55
### Using uv on macOS and Linux
@@ -16,7 +16,7 @@ nix develop
1616
```
1717

1818
## rdl2ot cli tool
19-
A PeakRDL extension to generate Opentitan style source files from SystemRDL files.
19+
A PeakRDL extension to generate OpenTitan register block SystemVerilog from SystemRDL files.
2020

2121
For more details, refer to [rdl2ot](./rdl2ot)
2222

@@ -26,20 +26,20 @@ cd rdl2ot
2626
pytest
2727
```
2828

29-
### How to generate the Opentitan register interfaces from a RDL file
29+
### How to generate the OpenTitan register interfaces from a RDL file
3030
```sh
3131
cd rdl2ot
3232
python src/rdl2ot export-rtl tests/snapshots/lc_ctrl.rdl /tmp/
3333
```
3434

35-
## Rdl-exporter
35+
## rdlexporter
3636
A library to generate SystemRDL files from the Hierarchical Register Model.
3737

3838
For more details, refer to [rdlexporter](./rdlexporter)
3939

4040
### How to run tests
4141
```sh
42-
cd rdl-exporter
42+
cd rdlexporter
4343
pytest
4444
```
4545

rdl2ot/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# rdl2ot cli tool
2-
A PeakRDL extension to generate Opentitan style source files from SystemRDL files.
2+
A PeakRDL extension to generate OpenTitan register block SystemVerilog from SystemRDL files.
33

44
## Using as a standalone tool
5-
### How to generate the Opentitan register interfaces from a RDL file
5+
### How to generate the OpenTitan register interfaces from a RDL file
66
```sh
77
rdl2ot export-rtl <input_rdl> <output_dir>
88
```
@@ -13,7 +13,7 @@ mkdir -p /tmp/lc_ctrl
1313
rdl2ot export-rtl tests/snapshots/lc_ctrl.rdl /tmp/lc_ctrl/
1414
```
1515

16-
## Using as a Peakrdl pluggin
16+
## Using as a PeakRDL pluggin
1717
### Installing
1818
```sh
1919
pip install peakrdl rdl2ot

rdl2ot/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[project]
22
name = "rdl2ot"
33
version = "0.1.0"
4-
description = "An extension of PeakRDL to generate Opentitan RTL."
4+
description = "An extension of PeakRDL to generate OpenTitan RTL."
55
requires-python = ">=3.10"
6-
keywords = ["SystemRDL", "Opentitan", "Codegen"]
6+
keywords = ["SystemRDL", "OpenTitan", "Codegen"]
77
readme = "README.md"
88
dependencies = [
99
"click>=8.2.1",

rdl2ot/src/rdl2ot/__peakrdl__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
44
# SPDX-License-Identifier: Apache-2.0
55

6-
"""Generates Opentitan regblock RTL."""
6+
"""Generates OpenTitan regblock RTL."""
77

88
from pathlib import Path
99
from typing import TYPE_CHECKING
@@ -19,9 +19,9 @@
1919

2020

2121
class Exporter(ExporterSubcommandPlugin):
22-
"""Generates Opentitan regblock RTL."""
22+
"""Generates OpenTitan regblock RTL."""
2323

24-
short_desc = "Generates Opentitan register block RTL."
24+
short_desc = "Generates OpenTitan register block RTL."
2525

2626
def add_exporter_arguments(self, arg_group: "argparse.ArgumentParser") -> None:
2727
"""No extra arguments."""

rdl2ot/src/rdl2ot/rtl_exporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def run(root_node: node.AddrmapNode, out_dir: Path) -> None:
4545

4646

4747
class OtInterfaceBuilder:
48-
"""Opentitan Interface Builder."""
48+
"""OpenTitan Interface Builder."""
4949

5050
num_regs: int = 0 # The number of registers of an interface
5151
num_windows: int = 0 # The number of registers of an interface

rdlexporter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# rdl-exporter
1+
# rdlexporter
22
A library to generate SystemRDL files from the Hierarchical Register Model.
33

44
How to use it:

0 commit comments

Comments
 (0)