HDLRuby 2.6.19 → 2.6.25
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/lib/HDLRuby/hdr_samples/case_bench.rb +30 -0
- data/lib/HDLRuby/hdr_samples/constant_in_function.rb +1 -1
- data/lib/HDLRuby/hdr_samples/if_bench.rb +24 -0
- data/lib/HDLRuby/hdr_samples/index_bench.rb +37 -0
- data/lib/HDLRuby/hdr_samples/range_bench.rb +47 -0
- data/lib/HDLRuby/hdr_samples/with_casts.rb +30 -0
- data/lib/HDLRuby/hdr_samples/with_concat.rb +26 -0
- data/lib/HDLRuby/hdr_samples/with_reduce.rb +38 -0
- data/lib/HDLRuby/hdr_samples/with_str2value.rb +14 -0
- data/lib/HDLRuby/hdr_samples/with_to_a.rb +90 -0
- data/lib/HDLRuby/hdrcc.rb +38 -25
- data/lib/HDLRuby/hruby_high.rb +11 -1
- data/lib/HDLRuby/hruby_low.rb +11 -0
- data/lib/HDLRuby/hruby_low2c.rb +1342 -551
- data/lib/HDLRuby/hruby_low_casts_without_expression.rb +78 -55
- data/lib/HDLRuby/hruby_low_mutable.rb +33 -0
- data/lib/HDLRuby/hruby_low_with_port.rb +21 -6
- data/lib/HDLRuby/hruby_low_without_namespace.rb +4 -2
- data/lib/HDLRuby/hruby_tools.rb +8 -1
- data/lib/HDLRuby/hruby_verilog.rb +218 -149
- data/lib/HDLRuby/sim/hruby_sim.h +113 -2
- data/lib/HDLRuby/sim/hruby_sim_calc.c +46 -13
- data/lib/HDLRuby/sim/hruby_sim_core.c +5 -3
- data/lib/HDLRuby/sim/hruby_sim_stack_calc.c +203 -0
- data/lib/HDLRuby/sim/hruby_sim_stack_calc.c.sav +100 -0
- data/lib/HDLRuby/sim/hruby_value_pool.c +36 -0
- data/lib/HDLRuby/version.rb +1 -1
- metadata +13 -2
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.6.
|
|
4
|
+
version: 2.6.25
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lovic Gauthier
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-01-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -83,6 +83,7 @@ files:
|
|
|
83
83
|
- lib/HDLRuby/hdr_samples/alu.rb
|
|
84
84
|
- lib/HDLRuby/hdr_samples/bstr_bench.rb
|
|
85
85
|
- lib/HDLRuby/hdr_samples/calculator.rb
|
|
86
|
+
- lib/HDLRuby/hdr_samples/case_bench.rb
|
|
86
87
|
- lib/HDLRuby/hdr_samples/comparison_bench.rb
|
|
87
88
|
- lib/HDLRuby/hdr_samples/constant_in_function.rb
|
|
88
89
|
- lib/HDLRuby/hdr_samples/counter_bench.rb
|
|
@@ -92,7 +93,9 @@ files:
|
|
|
92
93
|
- lib/HDLRuby/hdr_samples/dff_properties.rb
|
|
93
94
|
- lib/HDLRuby/hdr_samples/dff_unit.rb
|
|
94
95
|
- lib/HDLRuby/hdr_samples/huge_rom.rb
|
|
96
|
+
- lib/HDLRuby/hdr_samples/if_bench.rb
|
|
95
97
|
- lib/HDLRuby/hdr_samples/include.rb
|
|
98
|
+
- lib/HDLRuby/hdr_samples/index_bench.rb
|
|
96
99
|
- lib/HDLRuby/hdr_samples/instance_open.rb
|
|
97
100
|
- lib/HDLRuby/hdr_samples/linear_test.rb
|
|
98
101
|
- lib/HDLRuby/hdr_samples/logic_bench.rb
|
|
@@ -124,6 +127,7 @@ files:
|
|
|
124
127
|
- lib/HDLRuby/hdr_samples/neural/z.rb
|
|
125
128
|
- lib/HDLRuby/hdr_samples/prog.obj
|
|
126
129
|
- lib/HDLRuby/hdr_samples/ram.rb
|
|
130
|
+
- lib/HDLRuby/hdr_samples/range_bench.rb
|
|
127
131
|
- lib/HDLRuby/hdr_samples/register_with_code_bench.rb
|
|
128
132
|
- lib/HDLRuby/hdr_samples/rom.rb
|
|
129
133
|
- lib/HDLRuby/hdr_samples/ruby_fir_hw.rb
|
|
@@ -136,8 +140,10 @@ files:
|
|
|
136
140
|
- lib/HDLRuby/hdr_samples/system_open.rb
|
|
137
141
|
- lib/HDLRuby/hdr_samples/tuple.rb
|
|
138
142
|
- lib/HDLRuby/hdr_samples/type_minmax_bench.rb
|
|
143
|
+
- lib/HDLRuby/hdr_samples/with_casts.rb
|
|
139
144
|
- lib/HDLRuby/hdr_samples/with_channel.rb
|
|
140
145
|
- lib/HDLRuby/hdr_samples/with_class.rb
|
|
146
|
+
- lib/HDLRuby/hdr_samples/with_concat.rb
|
|
141
147
|
- lib/HDLRuby/hdr_samples/with_connector.rb
|
|
142
148
|
- lib/HDLRuby/hdr_samples/with_connector_memory.rb
|
|
143
149
|
- lib/HDLRuby/hdr_samples/with_decoder.rb
|
|
@@ -150,6 +156,9 @@ files:
|
|
|
150
156
|
- lib/HDLRuby/hdr_samples/with_memory_rom.rb
|
|
151
157
|
- lib/HDLRuby/hdr_samples/with_multi_channels.rb
|
|
152
158
|
- lib/HDLRuby/hdr_samples/with_reconf.rb
|
|
159
|
+
- lib/HDLRuby/hdr_samples/with_reduce.rb
|
|
160
|
+
- lib/HDLRuby/hdr_samples/with_str2value.rb
|
|
161
|
+
- lib/HDLRuby/hdr_samples/with_to_a.rb
|
|
153
162
|
- lib/HDLRuby/hdr_samples/with_to_array.rb
|
|
154
163
|
- lib/HDLRuby/hdrcc.rb
|
|
155
164
|
- lib/HDLRuby/high_samples/_adder_fault.rb
|
|
@@ -293,6 +302,8 @@ files:
|
|
|
293
302
|
- lib/HDLRuby/sim/hruby_sim_calc.c
|
|
294
303
|
- lib/HDLRuby/sim/hruby_sim_core.c
|
|
295
304
|
- lib/HDLRuby/sim/hruby_sim_list.c
|
|
305
|
+
- lib/HDLRuby/sim/hruby_sim_stack_calc.c
|
|
306
|
+
- lib/HDLRuby/sim/hruby_sim_stack_calc.c.sav
|
|
296
307
|
- lib/HDLRuby/sim/hruby_sim_vcd.c
|
|
297
308
|
- lib/HDLRuby/sim/hruby_sim_vizualize.c
|
|
298
309
|
- lib/HDLRuby/sim/hruby_value_pool.c
|