rggen 0.33.3 → 0.33.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +11 -4
- data/lib/rggen/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ca4d13936db4ac017c6874105c84c93c9150801d2745fa0ebd688672b2395a1
|
4
|
+
data.tar.gz: c8f90c067b0f1b4f9d494c3db1026cc39b90ea72af5ebf80d056f6df5323123f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c219e4661a5805cae8b74583b7a0a11a1feb9a193a895c748d01c16c51231375d3c67a2669075abe607e52e2cf8f702a5dc1476c4519d229df674b21ed5adf6c
|
7
|
+
data.tar.gz: 13e191d515d73f5e75ce2b2f71b5cbb82c98d8ecec65e43e433444ee1a5ae061d0bcb7f727a6ead699499655083d4e8309e609088310fb05311d50d737e1f8ae
|
data/README.md
CHANGED
@@ -19,6 +19,8 @@ RgGen has following features:
|
|
19
19
|
* SystemVerilog
|
20
20
|
* Verilog
|
21
21
|
* Need [rggen-verilog](https://github.com/rggen/rggen-verilog) plugin
|
22
|
+
* [Veryl](https://veryl-lang.org)
|
23
|
+
* Need [rggen-veryl](https://github.com/rggen/rggen-veryl) plugin
|
22
24
|
* VHDL
|
23
25
|
* Need [rggen-vhdl](https://github.com/rggen/rggen-vhdl) plugin
|
24
26
|
* Supports standard bus protocols
|
@@ -112,7 +114,7 @@ Following EDA tools can accept the generated source files.
|
|
112
114
|
* Synopsys VCS
|
113
115
|
* Cadence Xcelium
|
114
116
|
* Metrics DSim
|
115
|
-
*
|
117
|
+
* AMD Vivado Simulator
|
116
118
|
* Verilator
|
117
119
|
* Need `-Wno-unoptflat` switch for Verilog RTL
|
118
120
|
* Icarus Verilog
|
@@ -120,7 +122,7 @@ Following EDA tools can accept the generated source files.
|
|
120
122
|
* Synthesis tools
|
121
123
|
* Synopsys Design Compiler
|
122
124
|
* Intel Quartus
|
123
|
-
*
|
125
|
+
* AMD Vivado
|
124
126
|
* [Yosys](http://www.clifford.at/yosys/)
|
125
127
|
* Verilog RTL
|
126
128
|
|
@@ -145,20 +147,22 @@ $ rggen -c config.yml -o out uart_csr.yml
|
|
145
147
|
|
146
148
|
Then, generated files will be written to the `out` directory.
|
147
149
|
|
148
|
-
If you want to generate Verilog RTL and
|
150
|
+
If you want to generate Verilog RTL, Veryl RTL and VHDL RTL then you need to instll optional plugins listed below.
|
149
151
|
|
150
152
|
* Verilog writer plugin: [rggen-verilog](https://github.com/rggen/rggen-verilog)
|
153
|
+
* Veryl writer plugin: [rggen-veryl](https://github.com/rggen/rggen-veryl)
|
151
154
|
* VHDL writer plugin: [rggen-vhdl](https://github.com/rggen/rggen-vhdl)
|
152
155
|
|
153
156
|
```
|
154
157
|
$ gem install rggen-verilog
|
158
|
+
$ gem install rggen-veryl
|
155
159
|
$ gem install rggen-vhdl
|
156
160
|
```
|
157
161
|
|
158
162
|
In addition, you need to tell RgGen to use these plugins by using the `--plugin` option switch:
|
159
163
|
|
160
164
|
```
|
161
|
-
rggen -c config.yml --plugin rggen-verilog --plugin rggen-vhdl uart_csr.yml
|
165
|
+
$ rggen -c config.yml --plugin rggen-verilog --plugin rggen-veryl --plugin rggen-vhdl uart_csr.yml
|
162
166
|
```
|
163
167
|
|
164
168
|
RgGen will generate following source files from the [`uart_csr.yml`](https://github.com/rggen/rggen-sample/blob/master/uart_csr.yml) register map specification:
|
@@ -169,6 +173,8 @@ RgGen will generate following source files from the [`uart_csr.yml`](https://git
|
|
169
173
|
* Verilog RTL
|
170
174
|
* https://github.com/rggen/rggen-sample/blob/master/uart_csr.v
|
171
175
|
* https://github.com/rggen/rggen-sample/blob/master/uart_csr.vh
|
176
|
+
* Veryl RTL
|
177
|
+
* https://github.com/rggen/rggen-sample/blob/master/uart_csr.veryl
|
172
178
|
* VHDL RTL
|
173
179
|
* https://github.com/rggen/rggen-sample/blob/master/uart_csr.vhd
|
174
180
|
* UVM register model
|
@@ -202,6 +208,7 @@ Feedbacks, bug reports, questions and etc. are wellcome! You can post them by us
|
|
202
208
|
* https://github.com/rggen/rggen-spreadsheet-loader
|
203
209
|
* https://github.com/rggen/rggen-duh
|
204
210
|
* https://github.com/rggen/rggen-verilog
|
211
|
+
* https://github.com/rggen/rggen-veryl
|
205
212
|
* https://github.com/rggen/rggen-vhdl
|
206
213
|
* https://github.com/rggen/rggen-docker
|
207
214
|
|
data/lib/rggen/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rggen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.33.
|
4
|
+
version: 0.33.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taichi Ishitani
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rggen-c-header
|
@@ -86,14 +86,14 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 0.33.
|
89
|
+
version: 0.33.1
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0.33.
|
96
|
+
version: 0.33.1
|
97
97
|
description: |
|
98
98
|
RgGen is a code generation tool for ASIC/IP/FPGA/RTL engineers.
|
99
99
|
It will automatically generate source code related to control and status registers (CSR),
|
@@ -136,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
136
136
|
- !ruby/object:Gem::Version
|
137
137
|
version: '0'
|
138
138
|
requirements: []
|
139
|
-
rubygems_version: 3.5.
|
139
|
+
rubygems_version: 3.5.16
|
140
140
|
signing_key:
|
141
141
|
specification_version: 4
|
142
142
|
summary: Code generation tool for control and status registers
|