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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -4
  3. data/lib/rggen/version.rb +1 -1
  4. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a8a3395b42669e670ad735557574882fdebfc82c05150e1d907fbc0cc9ba486
4
- data.tar.gz: 2cb62bcb274010a9a0a71cf34b8dd12bafa72a7f383191045d418ba716481315
3
+ metadata.gz: 8ca4d13936db4ac017c6874105c84c93c9150801d2745fa0ebd688672b2395a1
4
+ data.tar.gz: c8f90c067b0f1b4f9d494c3db1026cc39b90ea72af5ebf80d056f6df5323123f
5
5
  SHA512:
6
- metadata.gz: 14686d40e0696b6c771bfcd1b444f8e739a0c02e9a8d87ba413c4e5cf76497dcf7772551f29845de6fc5bbb24ad252776df5fb7516730f47b81316bd0017fc9d
7
- data.tar.gz: 81c2d4e4878025e2c4ef20a4b600b1a17aa6d6df50dab6fc6f0e3f1f65ce2d23f883ad6e1d58b1b4b3b16e768dd3fc0bad561407490881c45571f642b6e3dd09
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
- * Xilinx Vivado Simulator
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
- * Xilinx Vivado
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/or VHDL RTL then you need to instll optional plugins listed below.
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RgGen
4
- VERSION = '0.33.3'
4
+ VERSION = '0.33.4'
5
5
  end
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.3
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-07-20 00:00:00.000000000 Z
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.0
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.0
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.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