origen_sim 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/version.rb +1 -1
- data/ext/README.md +2 -0
- data/ext/bridge.c +790 -0
- data/ext/bridge.h +9 -0
- data/ext/client.c +98 -0
- data/ext/client.h +11 -0
- data/ext/common.h +22 -0
- data/ext/origen.c +121 -0
- data/ext/origen.h +9 -0
- data/ext/vpi_user.h +924 -0
- metadata +11 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: origen_sim
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen McGinty
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-06-
|
11
|
+
date: 2017-06-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: origen
|
@@ -50,6 +50,15 @@ files:
|
|
50
50
|
- config/commands.rb
|
51
51
|
- config/shared_commands.rb
|
52
52
|
- config/version.rb
|
53
|
+
- ext/README.md
|
54
|
+
- ext/bridge.c
|
55
|
+
- ext/bridge.h
|
56
|
+
- ext/client.c
|
57
|
+
- ext/client.h
|
58
|
+
- ext/common.h
|
59
|
+
- ext/origen.c
|
60
|
+
- ext/origen.h
|
61
|
+
- ext/vpi_user.h
|
53
62
|
- lib/origen_sim.rb
|
54
63
|
- lib/origen_sim/commands/build.rb
|
55
64
|
- lib/origen_sim/flow.rb
|