Sha256: e677dc6255742b0373ef5273f92bdf34c81555d99dad84851ccc86e5f9612ff0

Contents?: true

Size: 192 Bytes

Versions: 8

Compression:

Stored size: 192 Bytes

Contents

# Ruby prototype of the design under test's Verilog implementation.
def feign!
  if clock.posedge?
    if reset.high?
      count.intVal = 0
    else
      count.intVal += 1
    end
  end
end

Version data entries

8 entries across 4 versions & 1 rubygems

Version Path
ruby-vpi-17.0.0 samp/counter/xUnit/counter_proto.rb
ruby-vpi-18.0.0 samp/counter/RSpec/counter_proto.rb
ruby-vpi-18.0.0 samp/counter/xUnit/counter_proto.rb
ruby-vpi-17.0.0 samp/counter/RSpec/counter_proto.rb
ruby-vpi-18.0.2 samp/counter/xUnit/counter_proto.rb
ruby-vpi-18.0.1 samp/counter/xUnit/counter_proto.rb
ruby-vpi-18.0.1 samp/counter/RSpec/counter_proto.rb
ruby-vpi-18.0.2 samp/counter/RSpec/counter_proto.rb