rggen 0.33.1 → 0.33.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -7
  3. data/lib/rggen/version.rb +1 -1
  4. metadata +8 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 618573702921fe7eecce020ca191f702dbefd2b0065646d08d790d92c1a8109f
4
- data.tar.gz: c14aec560055f7556739e54ba56817dfcc81c19d57946fa6b82e34f7d5936a2f
3
+ metadata.gz: 4f3254bd60990ca6ede1132f11c3ba3463392edf2d62335f3bd9e5c157825e54
4
+ data.tar.gz: a3b68350e4122aba6779672f990128bdf5aba9a9d1ae0af8d6ad0f5c5c7f721e
5
5
  SHA512:
6
- metadata.gz: d27f5c5a2fe96a5516931d3f50a08206349f05c268ae31d724d74216404190f61b63209330841aa995bd6a15b7da771b7abcdeab7dbdeee20edf7e6f164c15ec
7
- data.tar.gz: 04a320504c7ce3958e26a18fff66213fdcc9a8ad55d381da15f460233031681f5257717977d2c6a02a5b163ac65c9ab05e0d56a3db7a686388b69dbee652466b
6
+ metadata.gz: 3fbe4cc1d5cd7fe03c33577af14a81c2a59a97cc7c721b154ab19aadecc7f8588ff6670618c2038190ca0d57a856475b2af78e31e04b832207db1d1a2708fc7e
7
+ data.tar.gz: 592543d12a35726fe67274644d222ba5ff744fbb67c9cf565c7b4bc019d6a7c8ff5bc8c32e0c9a29820b8abce2dbd64f8c7ecebc87de1ac24ab5504ff5c9ff81
data/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  # RgGen
12
12
 
13
- RgGen is a code generation tool for ASIC/IP/FPGA/RTL engineers. It will automatically generate source code related to configuration and status registers (CSR), e.g. SytemVerilog RTL, UVM register model (UVM RAL/uvm_reg), C header file, Wiki documents, from human readable register map specifications.
13
+ RgGen is a code generation tool for ASIC/IP/FPGA/RTL engineers. It will automatically generate source code related to control and status registers (CSR), e.g. SytemVerilog RTL, UVM register model (UVM RAL/uvm_reg), C header file, Wiki documents, from human readable register map specifications.
14
14
 
15
15
  RgGen has following features:
16
16
 
@@ -33,11 +33,13 @@ RgGen has following features:
33
33
  * YAML
34
34
  * JSON
35
35
  * TOML
36
- * Spreadsheet (XLSX, XLS, ODS, CSV)
36
+ * Spreadsheet (XLSX, ODS, CSV)
37
37
  * [SiFive DUH](https://github.com/sifive/duh)
38
38
  * Need [rggen-duh](https://github.com/rggen/rggen-duh) plugin
39
- * Customize RgGen for you environment
40
- * E.g. add special bit field types
39
+ * Plugin feature
40
+ * Allow you to customize RgGen for your environment
41
+ * Add your own special bit field types
42
+ * Add your own host bus protocol
41
43
 
42
44
  ## Installation
43
45
 
@@ -64,11 +66,12 @@ $ gem install rggen
64
66
 
65
67
  RgGen and dependencies will be installed on your system root.
66
68
 
67
- If you want to install them on other location, you need to specify install path and set the `GEM_PATH` environment variable:
69
+ If you want to install them on other location, you need to specify install path and set `GEM_PATH` and `PATH` environment variables:
68
70
 
69
71
  ```
70
- $ gem install --install-dir YOUR_INSTALL_DIRECTORY rggen
71
- $ export GEM_PATH=YOUR_INSTALL_DIRECTORY
72
+ $ gem install --install-dir /path/to/your/install/directory rggen
73
+ $ export GEM_PATH=/path/to/your/install/directory
74
+ $ export PATH=$GEM_PATH/bin:$PATH
72
75
  ```
73
76
 
74
77
  You would get the following error message duaring installation if you have the old RgGen (version < 0.9).
@@ -108,6 +111,7 @@ Following EDA tools can accept the generated source files.
108
111
  * Simulation tools
109
112
  * Synopsys VCS
110
113
  * Cadence Xcelium
114
+ * Metrics DSim
111
115
  * Xilinx Vivado Simulator
112
116
  * Verilator
113
117
  * Need `-Wno-unoptflat` switch for Verilog RTL
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.1'
4
+ VERSION = '0.33.2'
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.1
4
+ version: 0.33.2
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-01-23 00:00:00.000000000 Z
11
+ date: 2024-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rggen-c-header
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.33.0
47
+ version: 0.33.1
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 0.33.0
54
+ version: 0.33.1
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rggen-markdown
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 0.25.2
75
+ version: 0.25.3
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 0.25.2
82
+ version: 0.25.3
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rggen-systemverilog
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -96,7 +96,7 @@ dependencies:
96
96
  version: 0.33.0
97
97
  description: |
98
98
  RgGen is a code generation tool for ASIC/IP/FPGA/RTL engineers.
99
- It will automatically generate source code related to configuration and status registers (CSR),
99
+ It will automatically generate source code related to control and status registers (CSR),
100
100
  e.g. SytemVerilog RTL, UVM RAL model, C header file, Wiki documents, from human readable register map specifications.
101
101
  email:
102
102
  - rggen@googlegroups.com
@@ -139,5 +139,5 @@ requirements: []
139
139
  rubygems_version: 3.5.5
140
140
  signing_key:
141
141
  specification_version: 4
142
- summary: Code generation tool for configuration and status registers
142
+ summary: Code generation tool for control and status registers
143
143
  test_files: []