-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFulladder.json
More file actions
30 lines (27 loc) · 1.17 KB
/
Fulladder.json
File metadata and controls
30 lines (27 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name" : "Full-Adder",
"input" : 3,
"output" : 2,
"gates" : 14,
"wiring" : [
{ "id": ":a", "op": "None", "edges": ["h1","h2","h2","i3"] },
{ "id": ":b", "op": "None", "edges": ["f1","f1","f3","h4"] },
{ "id": ":c", "op": "None", "edges": ["f2","f2","f3","h3"] },
{ "id": "f1", "op": "Nand", "edges": ["g1","h3"] },
{ "id": "f2", "op": "Nand", "edges": ["g1","h4"] },
{ "id": "f3", "op": "Nand", "edges": ["i1","h5"] },
{ "id": "g1", "op": "Nand", "edges": ["h1","h5"] },
{ "id": "h1", "op": "Nand", "edges": ["i1"] },
{ "id": "h2", "op": "Nand", "edges": ["j1"] },
{ "id": "h3", "op": "Nand", "edges": ["i2"] },
{ "id": "h4", "op": "Nand", "edges": ["i2"] },
{ "id": "h5", "op": "Nand", "edges": ["i3"] },
{ "id": "i1", "op": "Nand", "edges": ["d:"] },
{ "id": "i2", "op": "Nand", "edges": ["j1"] },
{ "id": "i3", "op": "Nand", "edges": ["k1"] },
{ "id": "j1", "op": "Nand", "edges": ["k1"] },
{ "id": "k1", "op": "Nand", "edges": ["e:"] },
{ "id": "d:", "op": "None" },
{ "id": "e:", "op": "None" }
]
}