HDLRuby 2.3.5 → 2.4.6

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.
@@ -214,6 +214,14 @@ module HDLRuby::High::Std
214
214
  par(ev) do
215
215
  ack <= 0
216
216
  run <= 0
217
+ hif(~run) do
218
+ rvok <= 0
219
+ lefts.each_with_index do |left,i|
220
+ lvoks[i] <= 0
221
+ # accs[i].write(0)
222
+ avs[i] <= 0
223
+ end
224
+ end
217
225
  hif(req | run) do
218
226
  run <= 1
219
227
  # Computation request.
@@ -232,14 +240,14 @@ module HDLRuby::High::Std
232
240
  end
233
241
  end
234
242
  end
235
- helse do
236
- rvok <= 0
237
- lefts.each_with_index do |left,i|
238
- lvoks[i] <= 0
239
- # accs[i].write(0)
240
- avs[i] <= 0
241
- end
242
- end
243
+ # helse do
244
+ # rvok <= 0
245
+ # lefts.each_with_index do |left,i|
246
+ # lvoks[i] <= 0
247
+ # # accs[i].write(0)
248
+ # avs[i] <= 0
249
+ # end
250
+ # end
243
251
  end
244
252
  end
245
253
 
@@ -1,3 +1,3 @@
1
1
  module HDLRuby
2
- VERSION = "2.3.5"
2
+ VERSION = "2.4.6"
3
3
  end
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.3.5
4
+ version: 2.4.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lovic Gauthier
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-08-23 00:00:00.000000000 Z
11
+ date: 2020-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -75,6 +75,7 @@ files:
75
75
  - lib/HDLRuby/hdr_samples/addsub.rb
76
76
  - lib/HDLRuby/hdr_samples/addsubz.rb
77
77
  - lib/HDLRuby/hdr_samples/alu.rb
78
+ - lib/HDLRuby/hdr_samples/bstr_bench.rb
78
79
  - lib/HDLRuby/hdr_samples/calculator.rb
79
80
  - lib/HDLRuby/hdr_samples/counter_bench.rb
80
81
  - lib/HDLRuby/hdr_samples/dff.rb
@@ -123,6 +124,7 @@ files:
123
124
  - lib/HDLRuby/hdr_samples/with_linear.rb
124
125
  - lib/HDLRuby/hdr_samples/with_loop.rb
125
126
  - lib/HDLRuby/hdr_samples/with_memory.rb
127
+ - lib/HDLRuby/hdr_samples/with_multi_channels.rb
126
128
  - lib/HDLRuby/hdr_samples/with_reconf.rb
127
129
  - lib/HDLRuby/hdrcc.rb
128
130
  - lib/HDLRuby/high_samples/_adder_fault.rb
@@ -262,6 +264,7 @@ files:
262
264
  - lib/HDLRuby/sim/hruby_sim_calc.c
263
265
  - lib/HDLRuby/sim/hruby_sim_core.c
264
266
  - lib/HDLRuby/sim/hruby_sim_list.c
267
+ - lib/HDLRuby/sim/hruby_sim_vcd.c
265
268
  - lib/HDLRuby/sim/hruby_sim_vizualize.c
266
269
  - lib/HDLRuby/sim/hruby_value_pool.c
267
270
  - lib/HDLRuby/std/channel.rb