blifutils 0.0.1
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 +7 -0
- data/LICENSE +674 -0
- data/README.md +377 -0
- data/bin/blifutils +184 -0
- data/examples/zpu/compile_zpu_program/Makefile +114 -0
- data/examples/zpu/compile_zpu_program/README.md +10 -0
- data/examples/zpu/compile_zpu_program/main.c +68 -0
- data/examples/zpu/simulate_zpu.rb +23 -0
- data/examples/zpu/testbench_zpu.cc +132 -0
- data/examples/zpu/zpu_helloworld.bin +0 -0
- data/examples/zpu/zpu_mem16.blif +3519 -0
- data/examples/zpu/zpu_mem16.piccolo +351 -0
- data/lib/blifutils.rb +31 -0
- data/lib/blifutils/ast.rb +185 -0
- data/lib/blifutils/blif_to_vhdl.rb +180 -0
- data/lib/blifutils/elaborator.rb +257 -0
- data/lib/blifutils/layering.rb +406 -0
- data/lib/blifutils/level_analyzer.rb +143 -0
- data/lib/blifutils/lexer.rb +133 -0
- data/lib/blifutils/netlist.rb +808 -0
- data/lib/blifutils/parser.rb +251 -0
- data/lib/blifutils/simulator_generator.rb +342 -0
- data/share/blimulator_cpp_classes.cc +446 -0
- data/share/blimulator_cpp_classes.hh +136 -0
- data/test/sqrt8.blif +40 -0
- data/test/sqrt8.piccolo +132 -0
- data/test/sqrt8_PC.blif +43 -0
- data/test/sqrt8_PC_counter.blif +61 -0
- data/test/sqrt8_PC_done.blif +49 -0
- data/test/sqrt8_PC_state.blif +68 -0
- data/test/sqrt8_PO.blif +43 -0
- data/test/sqrt8_PO_output.blif +67 -0
- data/test/sqrt8_PO_sqrtr.blif +66 -0
- data/test/sqrt8_PO_work.blif +227 -0
- data/test/test_blifutils.rb +79 -0
- data/test/testbench_sqrt8.cc +48 -0
- metadata +102 -0
@@ -0,0 +1,66 @@
|
|
1
|
+
# Module sqrt8_PO_sqrtr
|
2
|
+
# Generated by PICCOLO on Sunday 26 November 2017 at 17:05:04
|
3
|
+
# Defined line 44 from file "/home/theotime/Documents/projects/blifutils/test/sqrt8.piccolo"
|
4
|
+
#
|
5
|
+
# INTERFACE:
|
6
|
+
# Inputs: state<2>, fbit<1>
|
7
|
+
# Outputs: sqrtr<4>
|
8
|
+
#
|
9
|
+
# NETLIST ANALYSIS:
|
10
|
+
#
|
11
|
+
# Number of components: ........................ 12
|
12
|
+
# Number of primitives: ......................... 9
|
13
|
+
# Maximum primitive input bit width: ............ 4
|
14
|
+
# Average primitive input bit width: .......... 2.3
|
15
|
+
#
|
16
|
+
# Number of inputs: ............................. 2
|
17
|
+
# Number of outputs: ............................ 1
|
18
|
+
# Number of input bits: ......................... 3
|
19
|
+
# Number of output bits: ........................ 4
|
20
|
+
#
|
21
|
+
# Number of nets: .............................. 12
|
22
|
+
# Maximum number of fanout per net: ............. 4
|
23
|
+
# Average number of fanout per net: ........... 2.1
|
24
|
+
#
|
25
|
+
# Number of instanciated modules: ............... 0
|
26
|
+
#
|
27
|
+
# Primitives:
|
28
|
+
# Single output selector ........................ 4
|
29
|
+
# Register ...................................... 4
|
30
|
+
# Single output NOT gate ........................ 1
|
31
|
+
#
|
32
|
+
# Number of register bits: ...................... 4
|
33
|
+
# Number of constant bits: ...................... 0
|
34
|
+
#
|
35
|
+
# Maximum selector total input bit width: ....... 4
|
36
|
+
# Average selector total input bit width: ..... 4.0
|
37
|
+
# Maximum selector input bit width: ............. 2
|
38
|
+
# Average selector input bit width: ........... 2.0
|
39
|
+
# Maximum selector selector bit width: .......... 2
|
40
|
+
# Average selector selector bit width: ........ 2.0
|
41
|
+
|
42
|
+
.model sqrt8_PO_sqrtr
|
43
|
+
.inputs _clk_
|
44
|
+
.inputs state[1] state[0]
|
45
|
+
.inputs fbit[0]
|
46
|
+
.outputs sqrtr[3] sqrtr[2] sqrtr[1] sqrtr[0]
|
47
|
+
.latch n0 sqrtr[0] re _clk_ 0
|
48
|
+
.latch n1 sqrtr[1] re _clk_ 0
|
49
|
+
.latch n2 sqrtr[2] re _clk_ 0
|
50
|
+
.latch n3 sqrtr[3] re _clk_ 0
|
51
|
+
.names fbit[0] n4
|
52
|
+
0 1
|
53
|
+
.names state[0] state[1] sqrtr[0] n4 n0
|
54
|
+
1-1- 1
|
55
|
+
01-1 1
|
56
|
+
.names state[0] state[1] sqrtr[0] sqrtr[1] n1
|
57
|
+
011- 1
|
58
|
+
1--1 1
|
59
|
+
.names state[0] state[1] sqrtr[1] sqrtr[2] n2
|
60
|
+
011- 1
|
61
|
+
1--1 1
|
62
|
+
.names state[0] state[1] sqrtr[2] sqrtr[3] n3
|
63
|
+
011- 1
|
64
|
+
1--1 1
|
65
|
+
.end
|
66
|
+
|
@@ -0,0 +1,227 @@
|
|
1
|
+
# Module sqrt8_PO_work
|
2
|
+
# Generated by PICCOLO on Sunday 26 November 2017 at 17:05:04
|
3
|
+
# Defined line 24 from file "/home/theotime/Documents/projects/blifutils/test/sqrt8.piccolo"
|
4
|
+
#
|
5
|
+
# INTERFACE:
|
6
|
+
# Inputs: state<2>, radicand<8>, sqrtr<4>
|
7
|
+
# Outputs: fbit<1>
|
8
|
+
#
|
9
|
+
# NETLIST ANALYSIS:
|
10
|
+
#
|
11
|
+
# Number of components: ........................ 72
|
12
|
+
# Number of primitives: ........................ 68
|
13
|
+
# Maximum primitive input bit width: ............ 6
|
14
|
+
# Average primitive input bit width: .......... 2.4
|
15
|
+
#
|
16
|
+
# Number of inputs: ............................. 3
|
17
|
+
# Number of outputs: ............................ 1
|
18
|
+
# Number of input bits: ........................ 14
|
19
|
+
# Number of output bits: ........................ 1
|
20
|
+
#
|
21
|
+
# Number of nets: .............................. 82
|
22
|
+
# Maximum number of fanout per net: ............ 16
|
23
|
+
# Average number of fanout per net: ........... 2.0
|
24
|
+
#
|
25
|
+
# Number of instanciated modules: ............... 0
|
26
|
+
#
|
27
|
+
# Primitives:
|
28
|
+
# Single output selector ....................... 16
|
29
|
+
# Register ..................................... 16
|
30
|
+
# Single output XOR gate ....................... 11
|
31
|
+
# Single output AND gate ....................... 10
|
32
|
+
# Single output NOT gate ........................ 9
|
33
|
+
# Single output OR gate ........................ 6
|
34
|
+
#
|
35
|
+
# Number of register bits: ..................... 16
|
36
|
+
# Number of constant bits: ...................... 0
|
37
|
+
#
|
38
|
+
# Maximum selector total input bit width: ....... 6
|
39
|
+
# Average selector total input bit width: ..... 5.4
|
40
|
+
# Maximum selector input bit width: ............. 3
|
41
|
+
# Average selector input bit width: ........... 2.9
|
42
|
+
# Maximum selector selector bit width: .......... 3
|
43
|
+
# Average selector selector bit width: ........ 2.5
|
44
|
+
|
45
|
+
.model sqrt8_PO_work
|
46
|
+
.inputs _clk_
|
47
|
+
.inputs state[1] state[0]
|
48
|
+
.inputs radicand[7] radicand[6] radicand[5] radicand[4] radicand[3] radicand[2] radicand[1] radicand[0]
|
49
|
+
.inputs sqrtr[3] sqrtr[2] sqrtr[1] sqrtr[0]
|
50
|
+
.outputs fbit[0]
|
51
|
+
.latch n11 n10 re _clk_ 0
|
52
|
+
.latch n13 n12 re _clk_ 0
|
53
|
+
.latch n15 n14 re _clk_ 0
|
54
|
+
.latch n17 n16 re _clk_ 0
|
55
|
+
.latch n19 n18 re _clk_ 0
|
56
|
+
.latch n1B n1A re _clk_ 0
|
57
|
+
.latch n1D n1C re _clk_ 0
|
58
|
+
.latch n1F n1E re _clk_ 0
|
59
|
+
.latch n1 n0 re _clk_ 0
|
60
|
+
.latch n3 n2 re _clk_ 0
|
61
|
+
.latch n5 n4 re _clk_ 0
|
62
|
+
.latch n7 n6 re _clk_ 0
|
63
|
+
.latch n9 n8 re _clk_ 0
|
64
|
+
.latch nB nA re _clk_ 0
|
65
|
+
.latch nD nC re _clk_ 0
|
66
|
+
.latch nF nE re _clk_ 0
|
67
|
+
.names fbit[0] n27
|
68
|
+
0 1
|
69
|
+
.names n0 n20
|
70
|
+
0 1
|
71
|
+
.names n28 n0 n21
|
72
|
+
10 1
|
73
|
+
01 1
|
74
|
+
.names n28 n0 n29
|
75
|
+
11 1
|
76
|
+
.names n2 n29 n3D
|
77
|
+
1- 1
|
78
|
+
-1 1
|
79
|
+
.names sqrtr[0] n2A
|
80
|
+
0 1
|
81
|
+
.names n4 n2A n2B
|
82
|
+
10 1
|
83
|
+
01 1
|
84
|
+
.names n2B n3D n22
|
85
|
+
10 1
|
86
|
+
01 1
|
87
|
+
.names n4 n2A n2C
|
88
|
+
11 1
|
89
|
+
.names n2B n3D n2D
|
90
|
+
11 1
|
91
|
+
.names n2C n2D n3E
|
92
|
+
1- 1
|
93
|
+
-1 1
|
94
|
+
.names sqrtr[1] n2E
|
95
|
+
0 1
|
96
|
+
.names n6 n2E n2F
|
97
|
+
10 1
|
98
|
+
01 1
|
99
|
+
.names n2F n3E n23
|
100
|
+
10 1
|
101
|
+
01 1
|
102
|
+
.names n6 n2E n30
|
103
|
+
11 1
|
104
|
+
.names n2F n3E n31
|
105
|
+
11 1
|
106
|
+
.names n30 n31 n3F
|
107
|
+
1- 1
|
108
|
+
-1 1
|
109
|
+
.names sqrtr[2] n32
|
110
|
+
0 1
|
111
|
+
.names n8 n32 n33
|
112
|
+
10 1
|
113
|
+
01 1
|
114
|
+
.names n33 n3F n24
|
115
|
+
10 1
|
116
|
+
01 1
|
117
|
+
.names n8 n32 n34
|
118
|
+
11 1
|
119
|
+
.names n33 n3F n35
|
120
|
+
11 1
|
121
|
+
.names n34 n35 n40
|
122
|
+
1- 1
|
123
|
+
-1 1
|
124
|
+
.names sqrtr[3] n36
|
125
|
+
0 1
|
126
|
+
.names nA n36 n37
|
127
|
+
10 1
|
128
|
+
01 1
|
129
|
+
.names n37 n40 n25
|
130
|
+
10 1
|
131
|
+
01 1
|
132
|
+
.names nA n36 n38
|
133
|
+
11 1
|
134
|
+
.names n37 n40 n39
|
135
|
+
11 1
|
136
|
+
.names n38 n39 n41
|
137
|
+
1- 1
|
138
|
+
-1 1
|
139
|
+
.names n3A n41 n26
|
140
|
+
10 1
|
141
|
+
01 1
|
142
|
+
.names n3A n41 n3B
|
143
|
+
11 1
|
144
|
+
.names nC n3B n42
|
145
|
+
1- 1
|
146
|
+
-1 1
|
147
|
+
.names n3C n42 fbit[0]
|
148
|
+
10 1
|
149
|
+
01 1
|
150
|
+
.names state[0] state[1] n10 radicand[0] n11
|
151
|
+
011- 1
|
152
|
+
00-1 1
|
153
|
+
11-1 1
|
154
|
+
.names state[0] state[1] n12 radicand[1] n13
|
155
|
+
011- 1
|
156
|
+
00-1 1
|
157
|
+
11-1 1
|
158
|
+
.names state[0] state[1] n10 n14 radicand[2] n15
|
159
|
+
101-- 1
|
160
|
+
01-1- 1
|
161
|
+
00--1 1
|
162
|
+
11--1 1
|
163
|
+
.names state[0] state[1] n12 n16 radicand[3] n17
|
164
|
+
101-- 1
|
165
|
+
01-1- 1
|
166
|
+
00--1 1
|
167
|
+
11--1 1
|
168
|
+
.names state[0] state[1] n14 n18 radicand[4] n19
|
169
|
+
101-- 1
|
170
|
+
01-1- 1
|
171
|
+
00--1 1
|
172
|
+
11--1 1
|
173
|
+
.names state[0] state[1] n16 n1A radicand[5] n1B
|
174
|
+
101-- 1
|
175
|
+
01-1- 1
|
176
|
+
00--1 1
|
177
|
+
11--1 1
|
178
|
+
.names state[0] state[1] n18 n1C radicand[6] n1D
|
179
|
+
101-- 1
|
180
|
+
01-1- 1
|
181
|
+
00--1 1
|
182
|
+
11--1 1
|
183
|
+
.names state[0] state[1] n1A n1E radicand[7] n1F
|
184
|
+
101-- 1
|
185
|
+
01-1- 1
|
186
|
+
00--1 1
|
187
|
+
11--1 1
|
188
|
+
.names n27 state[0] state[1] n1C n0 n20 n1
|
189
|
+
-101-- 1
|
190
|
+
001-1- 1
|
191
|
+
101--1 1
|
192
|
+
.names n27 state[0] state[1] n1E n2 n21 n3
|
193
|
+
-101-- 1
|
194
|
+
001-1- 1
|
195
|
+
101--1 1
|
196
|
+
.names n27 state[0] state[1] n0 n4 n22 n5
|
197
|
+
-101-- 1
|
198
|
+
001-1- 1
|
199
|
+
101--1 1
|
200
|
+
.names n27 state[0] state[1] n2 n6 n23 n7
|
201
|
+
-101-- 1
|
202
|
+
001-1- 1
|
203
|
+
101--1 1
|
204
|
+
.names n27 state[0] state[1] n4 n8 n24 n9
|
205
|
+
-101-- 1
|
206
|
+
001-1- 1
|
207
|
+
101--1 1
|
208
|
+
.names n27 state[0] state[1] n6 nA n25 nB
|
209
|
+
-101-- 1
|
210
|
+
001-1- 1
|
211
|
+
101--1 1
|
212
|
+
.names n27 state[0] state[1] n8 nC n26 nD
|
213
|
+
-101-- 1
|
214
|
+
001-1- 1
|
215
|
+
101--1 1
|
216
|
+
.names n27 state[0] state[1] nA fbit[0] nE nF
|
217
|
+
-101-- 1
|
218
|
+
101-1- 1
|
219
|
+
001--1 1
|
220
|
+
.names n2 n28
|
221
|
+
0 1
|
222
|
+
.names nC n3A
|
223
|
+
0 1
|
224
|
+
.names nE n3C
|
225
|
+
0 1
|
226
|
+
.end
|
227
|
+
|
@@ -0,0 +1,79 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'blifutils'
|
4
|
+
|
5
|
+
golden_model_names = [
|
6
|
+
"sqrt8",
|
7
|
+
"sqrt8_PO",
|
8
|
+
"sqrt8_PO_output",
|
9
|
+
"sqrt8_PO_sqrtr",
|
10
|
+
"sqrt8_PO_work",
|
11
|
+
"sqrt8_PC",
|
12
|
+
"sqrt8_PC_done",
|
13
|
+
"sqrt8_PC_state",
|
14
|
+
"sqrt8_PC_counter"
|
15
|
+
]
|
16
|
+
|
17
|
+
golden_model_analyze = {
|
18
|
+
name: "sqrt8",
|
19
|
+
nb_inputs: 10,
|
20
|
+
nb_outputs: 5,
|
21
|
+
is_blackbox: false,
|
22
|
+
nb_nets: 115,
|
23
|
+
nb_edges: 248,
|
24
|
+
nb_nodes: 106,
|
25
|
+
nb_latches: 29,
|
26
|
+
nb_gates: 77,
|
27
|
+
nb_subckt: 0,
|
28
|
+
gates: {
|
29
|
+
gates_per_nb_inputs: {
|
30
|
+
4 => 13,
|
31
|
+
1 => 19,
|
32
|
+
2 => 30,
|
33
|
+
5 => 7,
|
34
|
+
6 => 8
|
35
|
+
},
|
36
|
+
nb_buffers: 5,
|
37
|
+
nb_constants: 0
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
golden_level = 16
|
42
|
+
|
43
|
+
|
44
|
+
input_file_name = File.join(File.dirname(File.expand_path(__FILE__)), 'sqrt8.blif')
|
45
|
+
|
46
|
+
netlist = BlifUtils::read(input_file_name)
|
47
|
+
|
48
|
+
model_names = netlist.models.collect{|model| model.name}
|
49
|
+
abort "FAIL: Retreived models have different names" if model_names != golden_model_names
|
50
|
+
|
51
|
+
sqrt8_flattened = netlist.flatten('sqrt8')
|
52
|
+
|
53
|
+
analyze = sqrt8_flattened.analyze_to_hash
|
54
|
+
analyze.each{|k, v| puts "#{k} -> #{v}"}
|
55
|
+
abort "FAIL: Flattened model is different from the golden model" if analyze != golden_model_analyze
|
56
|
+
|
57
|
+
level = sqrt8_flattened.level
|
58
|
+
puts "Logic level: #{level}"
|
59
|
+
abort "FAIL: logic level different from golden level" if level != golden_level
|
60
|
+
|
61
|
+
netlist.clear.add_model(sqrt8_flattened).create_simulation_file_for_model('sqrt8')
|
62
|
+
|
63
|
+
testbench_dir = '.'
|
64
|
+
testbench_src = 'testbench_sqrt8.cc'
|
65
|
+
testbench_obj = 'sqrt8_cpp_sim.o'
|
66
|
+
testbench_exec = 'sqrt8_cpp_sim'
|
67
|
+
|
68
|
+
cmd = "g++ -W -Wall -I#{testbench_dir} -o #{testbench_exec} #{testbench_src} #{testbench_obj}"
|
69
|
+
puts "Executing: #{cmd}"
|
70
|
+
res = system cmd
|
71
|
+
abort "Cannot find g++" if res.nil?
|
72
|
+
abort unless res
|
73
|
+
|
74
|
+
puts "Executing: #{testbench_exec}"
|
75
|
+
abort unless system "./#{testbench_exec}"
|
76
|
+
|
77
|
+
puts
|
78
|
+
puts 'TEST PASSED'
|
79
|
+
|
@@ -0,0 +1,48 @@
|
|
1
|
+
#include <cmath>
|
2
|
+
#include "sqrt8_cpp_header.hh"
|
3
|
+
|
4
|
+
int main(void)
|
5
|
+
{
|
6
|
+
uint64_t in, out, golden;
|
7
|
+
int iterations = 0, nb_errors = 0;
|
8
|
+
|
9
|
+
Sqrt8SimulationClass *dut = new Sqrt8SimulationClass();
|
10
|
+
|
11
|
+
dut->reset();
|
12
|
+
|
13
|
+
for (in = 0; in < 256; in++) {
|
14
|
+
iterations++;
|
15
|
+
|
16
|
+
dut->INPUT_VECTOR_radicand->setValue(in);
|
17
|
+
dut->INPUT_NET_go->setValue(1);
|
18
|
+
dut->cycle();
|
19
|
+
dut->INPUT_NET_go->setValue(0);
|
20
|
+
dut->cycle();
|
21
|
+
|
22
|
+
while (dut->OUTPUT_NET_done->getValue() != 1) {
|
23
|
+
dut->clock();
|
24
|
+
dut->propagate();
|
25
|
+
}
|
26
|
+
|
27
|
+
out = dut->OUTPUT_VECTOR_squareRoot->getValue(NULL);
|
28
|
+
golden = (int)sqrt(in);
|
29
|
+
if (out != golden) {
|
30
|
+
std::cerr << "sqrt(" << in << ") => " << out << " (should be " << golden << ")" << std::endl;
|
31
|
+
nb_errors += 1;
|
32
|
+
}
|
33
|
+
else
|
34
|
+
std::cout << "sqrt(" << in << ") = " << out << std::endl;
|
35
|
+
}
|
36
|
+
|
37
|
+
delete dut;
|
38
|
+
|
39
|
+
if (nb_errors > 0) {
|
40
|
+
std::cerr << "C++ simulation: FAILED: " << nb_errors << "/" << iterations << " errors (" << (float)nb_errors*100.0f/(float)iterations << std::endl;
|
41
|
+
return EXIT_FAILURE;
|
42
|
+
}
|
43
|
+
|
44
|
+
std::cout << "C++ simulation: PASSED" << std::endl;
|
45
|
+
|
46
|
+
return EXIT_SUCCESS;
|
47
|
+
}
|
48
|
+
|
metadata
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: blifutils
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Théotime Bollengier
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-11-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rltk
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.0'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.0.1
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3.0'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 3.0.1
|
33
|
+
description: BlifUtils is a library to handle BLIF logic netlists in Ruby. It can
|
34
|
+
read and write files in the BLIF format, elaborate internal representations of the
|
35
|
+
netlists, analyze it, flattent modules, write the modules as VHDL entities, and
|
36
|
+
generate C++ code for fast simulation of the netlists.
|
37
|
+
email: theotime.bollengier@gmail.com
|
38
|
+
executables:
|
39
|
+
- blifutils
|
40
|
+
extensions: []
|
41
|
+
extra_rdoc_files: []
|
42
|
+
files:
|
43
|
+
- LICENSE
|
44
|
+
- README.md
|
45
|
+
- bin/blifutils
|
46
|
+
- examples/zpu/compile_zpu_program/Makefile
|
47
|
+
- examples/zpu/compile_zpu_program/README.md
|
48
|
+
- examples/zpu/compile_zpu_program/main.c
|
49
|
+
- examples/zpu/simulate_zpu.rb
|
50
|
+
- examples/zpu/testbench_zpu.cc
|
51
|
+
- examples/zpu/zpu_helloworld.bin
|
52
|
+
- examples/zpu/zpu_mem16.blif
|
53
|
+
- examples/zpu/zpu_mem16.piccolo
|
54
|
+
- lib/blifutils.rb
|
55
|
+
- lib/blifutils/ast.rb
|
56
|
+
- lib/blifutils/blif_to_vhdl.rb
|
57
|
+
- lib/blifutils/elaborator.rb
|
58
|
+
- lib/blifutils/layering.rb
|
59
|
+
- lib/blifutils/level_analyzer.rb
|
60
|
+
- lib/blifutils/lexer.rb
|
61
|
+
- lib/blifutils/netlist.rb
|
62
|
+
- lib/blifutils/parser.rb
|
63
|
+
- lib/blifutils/simulator_generator.rb
|
64
|
+
- share/blimulator_cpp_classes.cc
|
65
|
+
- share/blimulator_cpp_classes.hh
|
66
|
+
- test/sqrt8.blif
|
67
|
+
- test/sqrt8.piccolo
|
68
|
+
- test/sqrt8_PC.blif
|
69
|
+
- test/sqrt8_PC_counter.blif
|
70
|
+
- test/sqrt8_PC_done.blif
|
71
|
+
- test/sqrt8_PC_state.blif
|
72
|
+
- test/sqrt8_PO.blif
|
73
|
+
- test/sqrt8_PO_output.blif
|
74
|
+
- test/sqrt8_PO_sqrtr.blif
|
75
|
+
- test/sqrt8_PO_work.blif
|
76
|
+
- test/test_blifutils.rb
|
77
|
+
- test/testbench_sqrt8.cc
|
78
|
+
homepage: http://github.com/TheotimeBollengier/blifutils
|
79
|
+
licenses:
|
80
|
+
- GPL-3.0
|
81
|
+
metadata: {}
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubyforge_project:
|
98
|
+
rubygems_version: 2.6.12
|
99
|
+
signing_key:
|
100
|
+
specification_version: 4
|
101
|
+
summary: BlifUtils is a library to handle BLIF netlists in Ruby.
|
102
|
+
test_files: []
|