HDLRuby 2.7.11 → 2.10.2
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 +14 -1
- data/lib/HDLRuby/hdr_samples/adder_gen.rb +22 -0
- data/lib/HDLRuby/hdr_samples/adder_gen_gen.rb +40 -0
- data/lib/HDLRuby/hdr_samples/dff_unit.rb +1 -1
- data/lib/HDLRuby/hdr_samples/with_def.rb +29 -0
- data/lib/HDLRuby/hdr_samples/with_delay.rb +72 -0
- data/lib/HDLRuby/hdr_samples/with_handshake.rb +110 -0
- data/lib/HDLRuby/hdr_samples/with_of.rb +51 -0
- data/lib/HDLRuby/hdr_samples/with_reconf.rb +75 -72
- data/lib/HDLRuby/hdr_samples/with_terminate.rb +32 -0
- data/lib/HDLRuby/hdrcc.rb +51 -5
- data/lib/HDLRuby/hdrlib.rb +592 -0
- data/lib/HDLRuby/hruby_high.rb +221 -44
- data/lib/HDLRuby/hruby_low.rb +210 -5
- data/lib/HDLRuby/hruby_low2c.rb +98 -9
- data/lib/HDLRuby/hruby_low2vhd.rb +12 -0
- data/lib/HDLRuby/hruby_low_bool2select.rb +12 -0
- data/lib/HDLRuby/hruby_low_fix_types.rb +20 -1
- data/lib/HDLRuby/hruby_low_resolve.rb +1 -1
- data/lib/HDLRuby/hruby_low_without_connection.rb +1 -0
- data/lib/HDLRuby/hruby_low_without_select.rb +11 -1
- data/lib/HDLRuby/hruby_verilog.rb +9 -1
- data/lib/HDLRuby/sim/hruby_sim.h +23 -1
- data/lib/HDLRuby/sim/hruby_sim_calc.c +3 -2
- data/lib/HDLRuby/sim/hruby_sim_core.c +60 -6
- data/lib/HDLRuby/sim/hruby_sim_vcd.c +1 -1
- data/lib/HDLRuby/std/delays.rb +92 -0
- data/lib/HDLRuby/std/handshakes.rb +60 -0
- data/lib/HDLRuby/std/reconf.rb +3 -0
- data/lib/HDLRuby/version.rb +1 -1
- metadata +11 -2
data/lib/HDLRuby/std/reconf.rb
CHANGED
data/lib/HDLRuby/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: HDLRuby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.10.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lovic Gauthier
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -76,6 +76,7 @@ files:
|
|
76
76
|
- lib/HDLRuby/hdr_samples/adder_assign_error.rb
|
77
77
|
- lib/HDLRuby/hdr_samples/adder_bench.rb
|
78
78
|
- lib/HDLRuby/hdr_samples/adder_gen.rb
|
79
|
+
- lib/HDLRuby/hdr_samples/adder_gen_gen.rb
|
79
80
|
- lib/HDLRuby/hdr_samples/adder_kadai.rb
|
80
81
|
- lib/HDLRuby/hdr_samples/adder_nodef_error.rb
|
81
82
|
- lib/HDLRuby/hdr_samples/addsub.rb
|
@@ -150,9 +151,12 @@ files:
|
|
150
151
|
- lib/HDLRuby/hdr_samples/with_connector.rb
|
151
152
|
- lib/HDLRuby/hdr_samples/with_connector_memory.rb
|
152
153
|
- lib/HDLRuby/hdr_samples/with_decoder.rb
|
154
|
+
- lib/HDLRuby/hdr_samples/with_def.rb
|
155
|
+
- lib/HDLRuby/hdr_samples/with_delay.rb
|
153
156
|
- lib/HDLRuby/hdr_samples/with_fixpoint.rb
|
154
157
|
- lib/HDLRuby/hdr_samples/with_fsm.rb
|
155
158
|
- lib/HDLRuby/hdr_samples/with_function_generator.rb
|
159
|
+
- lib/HDLRuby/hdr_samples/with_handshake.rb
|
156
160
|
- lib/HDLRuby/hdr_samples/with_init.rb
|
157
161
|
- lib/HDLRuby/hdr_samples/with_instance.rb
|
158
162
|
- lib/HDLRuby/hdr_samples/with_linear.rb
|
@@ -160,15 +164,18 @@ files:
|
|
160
164
|
- lib/HDLRuby/hdr_samples/with_memory.rb
|
161
165
|
- lib/HDLRuby/hdr_samples/with_memory_rom.rb
|
162
166
|
- lib/HDLRuby/hdr_samples/with_multi_channels.rb
|
167
|
+
- lib/HDLRuby/hdr_samples/with_of.rb
|
163
168
|
- lib/HDLRuby/hdr_samples/with_reconf.rb
|
164
169
|
- lib/HDLRuby/hdr_samples/with_reduce.rb
|
165
170
|
- lib/HDLRuby/hdr_samples/with_ref_array.rb
|
166
171
|
- lib/HDLRuby/hdr_samples/with_str2value.rb
|
167
172
|
- lib/HDLRuby/hdr_samples/with_subsums.rb
|
173
|
+
- lib/HDLRuby/hdr_samples/with_terminate.rb
|
168
174
|
- lib/HDLRuby/hdr_samples/with_to_a.rb
|
169
175
|
- lib/HDLRuby/hdr_samples/with_to_array.rb
|
170
176
|
- lib/HDLRuby/hdr_samples/with_values.rb
|
171
177
|
- lib/HDLRuby/hdrcc.rb
|
178
|
+
- lib/HDLRuby/hdrlib.rb
|
172
179
|
- lib/HDLRuby/high_samples/_adder_fault.rb
|
173
180
|
- lib/HDLRuby/high_samples/_generic_transmission2.rb
|
174
181
|
- lib/HDLRuby/high_samples/adder.rb
|
@@ -320,9 +327,11 @@ files:
|
|
320
327
|
- lib/HDLRuby/std/connector.rb
|
321
328
|
- lib/HDLRuby/std/counters.rb
|
322
329
|
- lib/HDLRuby/std/decoder.rb
|
330
|
+
- lib/HDLRuby/std/delays.rb
|
323
331
|
- lib/HDLRuby/std/fixpoint.rb
|
324
332
|
- lib/HDLRuby/std/fsm.rb
|
325
333
|
- lib/HDLRuby/std/function_generator.rb
|
334
|
+
- lib/HDLRuby/std/handshakes.rb
|
326
335
|
- lib/HDLRuby/std/hruby_unit.rb
|
327
336
|
- lib/HDLRuby/std/linear.rb
|
328
337
|
- lib/HDLRuby/std/loop.rb
|