digsim-logic-simulator 0.22.0__py3-none-any.whl

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.
Files changed (107) hide show
  1. digsim/__init__.py +6 -0
  2. digsim/app/__main__.py +12 -0
  3. digsim/app/cli.py +68 -0
  4. digsim/app/gui/__init__.py +6 -0
  5. digsim/app/gui/_circuit_area.py +468 -0
  6. digsim/app/gui/_component_selection.py +154 -0
  7. digsim/app/gui/_main_window.py +163 -0
  8. digsim/app/gui/_top_bar.py +339 -0
  9. digsim/app/gui/_utils.py +26 -0
  10. digsim/app/gui/_warning_dialog.py +46 -0
  11. digsim/app/gui_objects/__init__.py +7 -0
  12. digsim/app/gui_objects/_bus_bit_object.py +94 -0
  13. digsim/app/gui_objects/_buzzer_object.py +97 -0
  14. digsim/app/gui_objects/_component_context_menu.py +79 -0
  15. digsim/app/gui_objects/_component_object.py +374 -0
  16. digsim/app/gui_objects/_component_port_item.py +63 -0
  17. digsim/app/gui_objects/_dip_switch_object.py +104 -0
  18. digsim/app/gui_objects/_gui_note_object.py +80 -0
  19. digsim/app/gui_objects/_gui_object_factory.py +80 -0
  20. digsim/app/gui_objects/_hexdigit_object.py +53 -0
  21. digsim/app/gui_objects/_image_objects.py +239 -0
  22. digsim/app/gui_objects/_label_object.py +97 -0
  23. digsim/app/gui_objects/_logic_analyzer_object.py +86 -0
  24. digsim/app/gui_objects/_seven_segment_object.py +131 -0
  25. digsim/app/gui_objects/_shortcut_objects.py +82 -0
  26. digsim/app/gui_objects/_yosys_object.py +32 -0
  27. digsim/app/gui_objects/images/AND.png +0 -0
  28. digsim/app/gui_objects/images/Analyzer.png +0 -0
  29. digsim/app/gui_objects/images/BUF.png +0 -0
  30. digsim/app/gui_objects/images/Buzzer.png +0 -0
  31. digsim/app/gui_objects/images/Clock.png +0 -0
  32. digsim/app/gui_objects/images/DFF.png +0 -0
  33. digsim/app/gui_objects/images/DIP_SWITCH.png +0 -0
  34. digsim/app/gui_objects/images/FlipFlop.png +0 -0
  35. digsim/app/gui_objects/images/IC.png +0 -0
  36. digsim/app/gui_objects/images/LED_OFF.png +0 -0
  37. digsim/app/gui_objects/images/LED_ON.png +0 -0
  38. digsim/app/gui_objects/images/MUX.png +0 -0
  39. digsim/app/gui_objects/images/NAND.png +0 -0
  40. digsim/app/gui_objects/images/NOR.png +0 -0
  41. digsim/app/gui_objects/images/NOT.png +0 -0
  42. digsim/app/gui_objects/images/ONE.png +0 -0
  43. digsim/app/gui_objects/images/OR.png +0 -0
  44. digsim/app/gui_objects/images/PB.png +0 -0
  45. digsim/app/gui_objects/images/Switch_OFF.png +0 -0
  46. digsim/app/gui_objects/images/Switch_ON.png +0 -0
  47. digsim/app/gui_objects/images/XNOR.png +0 -0
  48. digsim/app/gui_objects/images/XOR.png +0 -0
  49. digsim/app/gui_objects/images/YOSYS.png +0 -0
  50. digsim/app/gui_objects/images/ZERO.png +0 -0
  51. digsim/app/images/app_icon.png +0 -0
  52. digsim/app/model/__init__.py +6 -0
  53. digsim/app/model/_model.py +210 -0
  54. digsim/app/model/_model_components.py +162 -0
  55. digsim/app/model/_model_new_wire.py +57 -0
  56. digsim/app/model/_model_objects.py +155 -0
  57. digsim/app/model/_model_settings.py +35 -0
  58. digsim/app/model/_model_shortcuts.py +72 -0
  59. digsim/app/settings/__init__.py +8 -0
  60. digsim/app/settings/_component_settings.py +415 -0
  61. digsim/app/settings/_gui_settings.py +71 -0
  62. digsim/app/settings/_shortcut_dialog.py +39 -0
  63. digsim/circuit/__init__.py +7 -0
  64. digsim/circuit/_circuit.py +329 -0
  65. digsim/circuit/_waves_writer.py +61 -0
  66. digsim/circuit/components/__init__.py +26 -0
  67. digsim/circuit/components/_bus_bits.py +68 -0
  68. digsim/circuit/components/_button.py +44 -0
  69. digsim/circuit/components/_buzzer.py +45 -0
  70. digsim/circuit/components/_clock.py +54 -0
  71. digsim/circuit/components/_dip_switch.py +73 -0
  72. digsim/circuit/components/_flip_flops.py +99 -0
  73. digsim/circuit/components/_gates.py +246 -0
  74. digsim/circuit/components/_hexdigit.py +82 -0
  75. digsim/circuit/components/_ic.py +36 -0
  76. digsim/circuit/components/_label_wire.py +167 -0
  77. digsim/circuit/components/_led.py +18 -0
  78. digsim/circuit/components/_logic_analyzer.py +60 -0
  79. digsim/circuit/components/_mem64kbyte.py +42 -0
  80. digsim/circuit/components/_memstdout.py +37 -0
  81. digsim/circuit/components/_note.py +25 -0
  82. digsim/circuit/components/_on_off_switch.py +54 -0
  83. digsim/circuit/components/_seven_segment.py +28 -0
  84. digsim/circuit/components/_static_level.py +28 -0
  85. digsim/circuit/components/_static_value.py +44 -0
  86. digsim/circuit/components/_yosys_atoms.py +1353 -0
  87. digsim/circuit/components/_yosys_component.py +232 -0
  88. digsim/circuit/components/atoms/__init__.py +23 -0
  89. digsim/circuit/components/atoms/_component.py +280 -0
  90. digsim/circuit/components/atoms/_digsim_exception.py +8 -0
  91. digsim/circuit/components/atoms/_port.py +398 -0
  92. digsim/circuit/components/ic/74162.json +1331 -0
  93. digsim/circuit/components/ic/7448.json +834 -0
  94. digsim/storage_model/__init__.py +7 -0
  95. digsim/storage_model/_app.py +58 -0
  96. digsim/storage_model/_circuit.py +126 -0
  97. digsim/synth/__init__.py +6 -0
  98. digsim/synth/__main__.py +67 -0
  99. digsim/synth/_synthesis.py +156 -0
  100. digsim/utils/__init__.py +6 -0
  101. digsim/utils/_yosys_netlist.py +134 -0
  102. digsim_logic_simulator-0.22.0.dist-info/METADATA +140 -0
  103. digsim_logic_simulator-0.22.0.dist-info/RECORD +107 -0
  104. digsim_logic_simulator-0.22.0.dist-info/WHEEL +5 -0
  105. digsim_logic_simulator-0.22.0.dist-info/entry_points.txt +2 -0
  106. digsim_logic_simulator-0.22.0.dist-info/licenses/LICENSE.md +32 -0
  107. digsim_logic_simulator-0.22.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1331 @@
1
+
2
+ {
3
+ "creator": "Yosys 0.59+0 (git sha1 26b51148a, ccache clang++ 18.1.3 -O3 -flto -flto)",
4
+ "modules": {
5
+ "ttl_74162": {
6
+ "attributes": {
7
+ "hdlname": "ttl_74162",
8
+ "dynports": "00000000000000000000000000000001",
9
+ "top": "00000000000000000000000000000001",
10
+ "src": "verilog/74xx/74162.v:3.1-64.10"
11
+ },
12
+ "parameter_default_values": {
13
+ "DELAY_FALL": "00000000000000000000000000000000",
14
+ "DELAY_RISE": "00000000000000000000000000000000",
15
+ "WIDTH": "00000000000000000000000000000100"
16
+ },
17
+ "ports": {
18
+ "Clear_bar": {
19
+ "direction": "input",
20
+ "bits": [ 2 ]
21
+ },
22
+ "Load_bar": {
23
+ "direction": "input",
24
+ "bits": [ 3 ]
25
+ },
26
+ "ENT": {
27
+ "direction": "input",
28
+ "bits": [ 4 ]
29
+ },
30
+ "ENP": {
31
+ "direction": "input",
32
+ "bits": [ 5 ]
33
+ },
34
+ "D": {
35
+ "direction": "input",
36
+ "bits": [ 6, 7, 8, 9 ]
37
+ },
38
+ "Clk": {
39
+ "direction": "input",
40
+ "bits": [ 10 ]
41
+ },
42
+ "RCO": {
43
+ "direction": "output",
44
+ "bits": [ 11 ]
45
+ },
46
+ "Q": {
47
+ "direction": "output",
48
+ "bits": [ 12, 13, 14, 15 ]
49
+ }
50
+ },
51
+ "cells": {
52
+ "$auto$ff.cc:266:slice$241": {
53
+ "hide_name": 1,
54
+ "type": "$_SDFFE_PN0P_",
55
+ "parameters": {
56
+ },
57
+ "attributes": {
58
+ "src": "verilog/74xx/74162.v:22.1-54.4"
59
+ },
60
+ "port_directions": {
61
+ "C": "input",
62
+ "D": "input",
63
+ "E": "input",
64
+ "Q": "output",
65
+ "R": "input"
66
+ },
67
+ "connections": {
68
+ "C": [ 10 ],
69
+ "D": [ 16 ],
70
+ "E": [ 17 ],
71
+ "Q": [ 12 ],
72
+ "R": [ 2 ]
73
+ }
74
+ },
75
+ "$auto$ff.cc:266:slice$242": {
76
+ "hide_name": 1,
77
+ "type": "$_SDFFE_PN0P_",
78
+ "parameters": {
79
+ },
80
+ "attributes": {
81
+ "src": "verilog/74xx/74162.v:22.1-54.4"
82
+ },
83
+ "port_directions": {
84
+ "C": "input",
85
+ "D": "input",
86
+ "E": "input",
87
+ "Q": "output",
88
+ "R": "input"
89
+ },
90
+ "connections": {
91
+ "C": [ 10 ],
92
+ "D": [ 18 ],
93
+ "E": [ 17 ],
94
+ "Q": [ 13 ],
95
+ "R": [ 2 ]
96
+ }
97
+ },
98
+ "$auto$ff.cc:266:slice$243": {
99
+ "hide_name": 1,
100
+ "type": "$_SDFFE_PN0P_",
101
+ "parameters": {
102
+ },
103
+ "attributes": {
104
+ "src": "verilog/74xx/74162.v:22.1-54.4"
105
+ },
106
+ "port_directions": {
107
+ "C": "input",
108
+ "D": "input",
109
+ "E": "input",
110
+ "Q": "output",
111
+ "R": "input"
112
+ },
113
+ "connections": {
114
+ "C": [ 10 ],
115
+ "D": [ 19 ],
116
+ "E": [ 17 ],
117
+ "Q": [ 14 ],
118
+ "R": [ 2 ]
119
+ }
120
+ },
121
+ "$auto$ff.cc:266:slice$244": {
122
+ "hide_name": 1,
123
+ "type": "$_SDFFE_PN0P_",
124
+ "parameters": {
125
+ },
126
+ "attributes": {
127
+ "src": "verilog/74xx/74162.v:22.1-54.4"
128
+ },
129
+ "port_directions": {
130
+ "C": "input",
131
+ "D": "input",
132
+ "E": "input",
133
+ "Q": "output",
134
+ "R": "input"
135
+ },
136
+ "connections": {
137
+ "C": [ 10 ],
138
+ "D": [ 20 ],
139
+ "E": [ 17 ],
140
+ "Q": [ 15 ],
141
+ "R": [ 2 ]
142
+ }
143
+ },
144
+ "$auto$opt_expr.cc:617:replace_const_cells$893": {
145
+ "hide_name": 1,
146
+ "type": "$_NOT_",
147
+ "parameters": {
148
+ },
149
+ "attributes": {
150
+ },
151
+ "port_directions": {
152
+ "A": "input",
153
+ "Y": "output"
154
+ },
155
+ "connections": {
156
+ "A": [ 13 ],
157
+ "Y": [ 21 ]
158
+ }
159
+ },
160
+ "$auto$opt_expr.cc:617:replace_const_cells$895": {
161
+ "hide_name": 1,
162
+ "type": "$_NOT_",
163
+ "parameters": {
164
+ },
165
+ "attributes": {
166
+ },
167
+ "port_directions": {
168
+ "A": "input",
169
+ "Y": "output"
170
+ },
171
+ "connections": {
172
+ "A": [ 15 ],
173
+ "Y": [ 22 ]
174
+ }
175
+ },
176
+ "$auto$opt_expr.cc:617:replace_const_cells$903": {
177
+ "hide_name": 1,
178
+ "type": "$_NOT_",
179
+ "parameters": {
180
+ },
181
+ "attributes": {
182
+ },
183
+ "port_directions": {
184
+ "A": "input",
185
+ "Y": "output"
186
+ },
187
+ "connections": {
188
+ "A": [ 14 ],
189
+ "Y": [ 23 ]
190
+ }
191
+ },
192
+ "$auto$opt_expr.cc:617:replace_const_cells$907": {
193
+ "hide_name": 1,
194
+ "type": "$_NOT_",
195
+ "parameters": {
196
+ },
197
+ "attributes": {
198
+ },
199
+ "port_directions": {
200
+ "A": "input",
201
+ "Y": "output"
202
+ },
203
+ "connections": {
204
+ "A": [ 12 ],
205
+ "Y": [ 24 ]
206
+ }
207
+ },
208
+ "$auto$opt_expr.cc:617:replace_const_cells$913": {
209
+ "hide_name": 1,
210
+ "type": "$_NOT_",
211
+ "parameters": {
212
+ },
213
+ "attributes": {
214
+ },
215
+ "port_directions": {
216
+ "A": "input",
217
+ "Y": "output"
218
+ },
219
+ "connections": {
220
+ "A": [ 3 ],
221
+ "Y": [ 25 ]
222
+ }
223
+ },
224
+ "$auto$simplemap.cc:106:simplemap_bitop$296": {
225
+ "hide_name": 1,
226
+ "type": "$_XOR_",
227
+ "parameters": {
228
+ },
229
+ "attributes": {
230
+ "src": "verilog/74xx/74162.v:20.17-20.30|/share/techmap.v:296.13-296.25"
231
+ },
232
+ "port_directions": {
233
+ "A": "input",
234
+ "B": "input",
235
+ "Y": "output"
236
+ },
237
+ "connections": {
238
+ "A": [ 13 ],
239
+ "B": [ 12 ],
240
+ "Y": [ 26 ]
241
+ }
242
+ },
243
+ "$auto$simplemap.cc:106:simplemap_bitop$297": {
244
+ "hide_name": 1,
245
+ "type": "$_XOR_",
246
+ "parameters": {
247
+ },
248
+ "attributes": {
249
+ "src": "verilog/74xx/74162.v:20.17-20.30|/share/techmap.v:296.13-296.25"
250
+ },
251
+ "port_directions": {
252
+ "A": "input",
253
+ "B": "input",
254
+ "Y": "output"
255
+ },
256
+ "connections": {
257
+ "A": [ 14 ],
258
+ "B": [ 27 ],
259
+ "Y": [ 28 ]
260
+ }
261
+ },
262
+ "$auto$simplemap.cc:106:simplemap_bitop$298": {
263
+ "hide_name": 1,
264
+ "type": "$_XOR_",
265
+ "parameters": {
266
+ },
267
+ "attributes": {
268
+ "src": "verilog/74xx/74162.v:20.17-20.30|/share/techmap.v:296.13-296.25"
269
+ },
270
+ "port_directions": {
271
+ "A": "input",
272
+ "B": "input",
273
+ "Y": "output"
274
+ },
275
+ "connections": {
276
+ "A": [ 15 ],
277
+ "B": [ 29 ],
278
+ "Y": [ 30 ]
279
+ }
280
+ },
281
+ "$auto$simplemap.cc:106:simplemap_bitop$732": {
282
+ "hide_name": 1,
283
+ "type": "$_AND_",
284
+ "parameters": {
285
+ },
286
+ "attributes": {
287
+ "src": "verilog/74xx/74162.v:20.17-20.30|/share/techmap.v:293.27-293.63|/share/techmap.v:240.19-240.41"
288
+ },
289
+ "port_directions": {
290
+ "A": "input",
291
+ "B": "input",
292
+ "Y": "output"
293
+ },
294
+ "connections": {
295
+ "A": [ 13 ],
296
+ "B": [ 12 ],
297
+ "Y": [ 27 ]
298
+ }
299
+ },
300
+ "$auto$simplemap.cc:106:simplemap_bitop$800": {
301
+ "hide_name": 1,
302
+ "type": "$_AND_",
303
+ "parameters": {
304
+ },
305
+ "attributes": {
306
+ "src": "verilog/74xx/74162.v:20.17-20.30|/share/techmap.v:293.27-293.63|/share/techmap.v:248.19-248.41"
307
+ },
308
+ "port_directions": {
309
+ "A": "input",
310
+ "B": "input",
311
+ "Y": "output"
312
+ },
313
+ "connections": {
314
+ "A": [ 14 ],
315
+ "B": [ 27 ],
316
+ "Y": [ 29 ]
317
+ }
318
+ },
319
+ "$auto$simplemap.cc:157:simplemap_reduce$115": {
320
+ "hide_name": 1,
321
+ "type": "$_OR_",
322
+ "parameters": {
323
+ },
324
+ "attributes": {
325
+ },
326
+ "port_directions": {
327
+ "A": "input",
328
+ "B": "input",
329
+ "Y": "output"
330
+ },
331
+ "connections": {
332
+ "A": [ 31 ],
333
+ "B": [ 32 ],
334
+ "Y": [ 33 ]
335
+ }
336
+ },
337
+ "$auto$simplemap.cc:157:simplemap_reduce$117": {
338
+ "hide_name": 1,
339
+ "type": "$_OR_",
340
+ "parameters": {
341
+ },
342
+ "attributes": {
343
+ },
344
+ "port_directions": {
345
+ "A": "input",
346
+ "B": "input",
347
+ "Y": "output"
348
+ },
349
+ "connections": {
350
+ "A": [ 33 ],
351
+ "B": [ 34 ],
352
+ "Y": [ 35 ]
353
+ }
354
+ },
355
+ "$auto$simplemap.cc:157:simplemap_reduce$135": {
356
+ "hide_name": 1,
357
+ "type": "$_OR_",
358
+ "parameters": {
359
+ },
360
+ "attributes": {
361
+ "src": "verilog/74xx/74162.v:46.39-46.39|verilog/74xx/74162.v:37.7-51.14"
362
+ },
363
+ "port_directions": {
364
+ "A": "input",
365
+ "B": "input",
366
+ "Y": "output"
367
+ },
368
+ "connections": {
369
+ "A": [ 36 ],
370
+ "B": [ 37 ],
371
+ "Y": [ 38 ]
372
+ }
373
+ },
374
+ "$auto$simplemap.cc:157:simplemap_reduce$159": {
375
+ "hide_name": 1,
376
+ "type": "$_OR_",
377
+ "parameters": {
378
+ },
379
+ "attributes": {
380
+ "src": "verilog/74xx/74162.v:45.39-45.39|verilog/74xx/74162.v:37.7-51.14"
381
+ },
382
+ "port_directions": {
383
+ "A": "input",
384
+ "B": "input",
385
+ "Y": "output"
386
+ },
387
+ "connections": {
388
+ "A": [ 39 ],
389
+ "B": [ 40 ],
390
+ "Y": [ 41 ]
391
+ }
392
+ },
393
+ "$auto$simplemap.cc:157:simplemap_reduce$171": {
394
+ "hide_name": 1,
395
+ "type": "$_OR_",
396
+ "parameters": {
397
+ },
398
+ "attributes": {
399
+ "src": "verilog/74xx/74162.v:43.39-43.39|verilog/74xx/74162.v:37.7-51.14"
400
+ },
401
+ "port_directions": {
402
+ "A": "input",
403
+ "B": "input",
404
+ "Y": "output"
405
+ },
406
+ "connections": {
407
+ "A": [ 24 ],
408
+ "B": [ 13 ],
409
+ "Y": [ 36 ]
410
+ }
411
+ },
412
+ "$auto$simplemap.cc:157:simplemap_reduce$174": {
413
+ "hide_name": 1,
414
+ "type": "$_OR_",
415
+ "parameters": {
416
+ },
417
+ "attributes": {
418
+ "src": "verilog/74xx/74162.v:43.39-43.39|verilog/74xx/74162.v:37.7-51.14"
419
+ },
420
+ "port_directions": {
421
+ "A": "input",
422
+ "B": "input",
423
+ "Y": "output"
424
+ },
425
+ "connections": {
426
+ "A": [ 36 ],
427
+ "B": [ 40 ],
428
+ "Y": [ 42 ]
429
+ }
430
+ },
431
+ "$auto$simplemap.cc:157:simplemap_reduce$186": {
432
+ "hide_name": 1,
433
+ "type": "$_OR_",
434
+ "parameters": {
435
+ },
436
+ "attributes": {
437
+ "src": "verilog/74xx/74162.v:41.39-41.39|verilog/74xx/74162.v:37.7-51.14"
438
+ },
439
+ "port_directions": {
440
+ "A": "input",
441
+ "B": "input",
442
+ "Y": "output"
443
+ },
444
+ "connections": {
445
+ "A": [ 24 ],
446
+ "B": [ 21 ],
447
+ "Y": [ 39 ]
448
+ }
449
+ },
450
+ "$auto$simplemap.cc:157:simplemap_reduce$189": {
451
+ "hide_name": 1,
452
+ "type": "$_OR_",
453
+ "parameters": {
454
+ },
455
+ "attributes": {
456
+ "src": "verilog/74xx/74162.v:41.39-41.39|verilog/74xx/74162.v:37.7-51.14"
457
+ },
458
+ "port_directions": {
459
+ "A": "input",
460
+ "B": "input",
461
+ "Y": "output"
462
+ },
463
+ "connections": {
464
+ "A": [ 39 ],
465
+ "B": [ 37 ],
466
+ "Y": [ 43 ]
467
+ }
468
+ },
469
+ "$auto$simplemap.cc:157:simplemap_reduce$201": {
470
+ "hide_name": 1,
471
+ "type": "$_OR_",
472
+ "parameters": {
473
+ },
474
+ "attributes": {
475
+ "src": "verilog/74xx/74162.v:40.39-40.39|verilog/74xx/74162.v:37.7-51.14"
476
+ },
477
+ "port_directions": {
478
+ "A": "input",
479
+ "B": "input",
480
+ "Y": "output"
481
+ },
482
+ "connections": {
483
+ "A": [ 12 ],
484
+ "B": [ 21 ],
485
+ "Y": [ 44 ]
486
+ }
487
+ },
488
+ "$auto$simplemap.cc:157:simplemap_reduce$202": {
489
+ "hide_name": 1,
490
+ "type": "$_OR_",
491
+ "parameters": {
492
+ },
493
+ "attributes": {
494
+ "src": "verilog/74xx/74162.v:40.39-40.39|verilog/74xx/74162.v:37.7-51.14"
495
+ },
496
+ "port_directions": {
497
+ "A": "input",
498
+ "B": "input",
499
+ "Y": "output"
500
+ },
501
+ "connections": {
502
+ "A": [ 23 ],
503
+ "B": [ 22 ],
504
+ "Y": [ 40 ]
505
+ }
506
+ },
507
+ "$auto$simplemap.cc:157:simplemap_reduce$204": {
508
+ "hide_name": 1,
509
+ "type": "$_OR_",
510
+ "parameters": {
511
+ },
512
+ "attributes": {
513
+ "src": "verilog/74xx/74162.v:40.39-40.39|verilog/74xx/74162.v:37.7-51.14"
514
+ },
515
+ "port_directions": {
516
+ "A": "input",
517
+ "B": "input",
518
+ "Y": "output"
519
+ },
520
+ "connections": {
521
+ "A": [ 44 ],
522
+ "B": [ 40 ],
523
+ "Y": [ 45 ]
524
+ }
525
+ },
526
+ "$auto$simplemap.cc:157:simplemap_reduce$216": {
527
+ "hide_name": 1,
528
+ "type": "$_OR_",
529
+ "parameters": {
530
+ },
531
+ "attributes": {
532
+ "src": "verilog/74xx/74162.v:39.39-39.39|verilog/74xx/74162.v:37.7-51.14"
533
+ },
534
+ "port_directions": {
535
+ "A": "input",
536
+ "B": "input",
537
+ "Y": "output"
538
+ },
539
+ "connections": {
540
+ "A": [ 12 ],
541
+ "B": [ 13 ],
542
+ "Y": [ 46 ]
543
+ }
544
+ },
545
+ "$auto$simplemap.cc:157:simplemap_reduce$219": {
546
+ "hide_name": 1,
547
+ "type": "$_OR_",
548
+ "parameters": {
549
+ },
550
+ "attributes": {
551
+ "src": "verilog/74xx/74162.v:39.39-39.39|verilog/74xx/74162.v:37.7-51.14"
552
+ },
553
+ "port_directions": {
554
+ "A": "input",
555
+ "B": "input",
556
+ "Y": "output"
557
+ },
558
+ "connections": {
559
+ "A": [ 46 ],
560
+ "B": [ 40 ],
561
+ "Y": [ 47 ]
562
+ }
563
+ },
564
+ "$auto$simplemap.cc:157:simplemap_reduce$232": {
565
+ "hide_name": 1,
566
+ "type": "$_OR_",
567
+ "parameters": {
568
+ },
569
+ "attributes": {
570
+ "src": "verilog/74xx/74162.v:37.23-37.23|verilog/74xx/74162.v:37.7-51.14"
571
+ },
572
+ "port_directions": {
573
+ "A": "input",
574
+ "B": "input",
575
+ "Y": "output"
576
+ },
577
+ "connections": {
578
+ "A": [ 14 ],
579
+ "B": [ 22 ],
580
+ "Y": [ 37 ]
581
+ }
582
+ },
583
+ "$auto$simplemap.cc:157:simplemap_reduce$234": {
584
+ "hide_name": 1,
585
+ "type": "$_OR_",
586
+ "parameters": {
587
+ },
588
+ "attributes": {
589
+ "src": "verilog/74xx/74162.v:37.23-37.23|verilog/74xx/74162.v:37.7-51.14"
590
+ },
591
+ "port_directions": {
592
+ "A": "input",
593
+ "B": "input",
594
+ "Y": "output"
595
+ },
596
+ "connections": {
597
+ "A": [ 44 ],
598
+ "B": [ 37 ],
599
+ "Y": [ 48 ]
600
+ }
601
+ },
602
+ "$auto$simplemap.cc:157:simplemap_reduce$246": {
603
+ "hide_name": 1,
604
+ "type": "$_OR_",
605
+ "parameters": {
606
+ },
607
+ "attributes": {
608
+ },
609
+ "port_directions": {
610
+ "A": "input",
611
+ "B": "input",
612
+ "Y": "output"
613
+ },
614
+ "connections": {
615
+ "A": [ 49 ],
616
+ "B": [ 50 ],
617
+ "Y": [ 51 ]
618
+ }
619
+ },
620
+ "$auto$simplemap.cc:157:simplemap_reduce$248": {
621
+ "hide_name": 1,
622
+ "type": "$_OR_",
623
+ "parameters": {
624
+ },
625
+ "attributes": {
626
+ },
627
+ "port_directions": {
628
+ "A": "input",
629
+ "B": "input",
630
+ "Y": "output"
631
+ },
632
+ "connections": {
633
+ "A": [ 51 ],
634
+ "B": [ 52 ],
635
+ "Y": [ 53 ]
636
+ }
637
+ },
638
+ "$auto$simplemap.cc:157:simplemap_reduce$255": {
639
+ "hide_name": 1,
640
+ "type": "$_OR_",
641
+ "parameters": {
642
+ },
643
+ "attributes": {
644
+ },
645
+ "port_directions": {
646
+ "A": "input",
647
+ "B": "input",
648
+ "Y": "output"
649
+ },
650
+ "connections": {
651
+ "A": [ 25 ],
652
+ "B": [ 54 ],
653
+ "Y": [ 17 ]
654
+ }
655
+ },
656
+ "$auto$simplemap.cc:157:simplemap_reduce$292": {
657
+ "hide_name": 1,
658
+ "type": "$_OR_",
659
+ "parameters": {
660
+ },
661
+ "attributes": {
662
+ "src": "verilog/74xx/74162.v:46.39-46.39|verilog/74xx/74162.v:37.7-51.14|/share/techmap.v:605.13-605.15"
663
+ },
664
+ "port_directions": {
665
+ "A": "input",
666
+ "B": "input",
667
+ "Y": "output"
668
+ },
669
+ "connections": {
670
+ "A": [ 35 ],
671
+ "B": [ 55 ],
672
+ "Y": [ 56 ]
673
+ }
674
+ },
675
+ "$auto$simplemap.cc:157:simplemap_reduce$294": {
676
+ "hide_name": 1,
677
+ "type": "$_OR_",
678
+ "parameters": {
679
+ },
680
+ "attributes": {
681
+ "src": "verilog/74xx/74162.v:46.39-46.39|verilog/74xx/74162.v:37.7-51.14|/share/techmap.v:605.13-605.15"
682
+ },
683
+ "port_directions": {
684
+ "A": "input",
685
+ "B": "input",
686
+ "Y": "output"
687
+ },
688
+ "connections": {
689
+ "A": [ 56 ],
690
+ "B": [ 53 ],
691
+ "Y": [ 57 ]
692
+ }
693
+ },
694
+ "$auto$simplemap.cc:227:simplemap_lognot$137": {
695
+ "hide_name": 1,
696
+ "type": "$_NOT_",
697
+ "parameters": {
698
+ },
699
+ "attributes": {
700
+ "src": "verilog/74xx/74162.v:46.39-46.39|verilog/74xx/74162.v:37.7-51.14"
701
+ },
702
+ "port_directions": {
703
+ "A": "input",
704
+ "Y": "output"
705
+ },
706
+ "connections": {
707
+ "A": [ 38 ],
708
+ "Y": [ 31 ]
709
+ }
710
+ },
711
+ "$auto$simplemap.cc:227:simplemap_lognot$161": {
712
+ "hide_name": 1,
713
+ "type": "$_NOT_",
714
+ "parameters": {
715
+ },
716
+ "attributes": {
717
+ "src": "verilog/74xx/74162.v:45.39-45.39|verilog/74xx/74162.v:37.7-51.14"
718
+ },
719
+ "port_directions": {
720
+ "A": "input",
721
+ "Y": "output"
722
+ },
723
+ "connections": {
724
+ "A": [ 41 ],
725
+ "Y": [ 32 ]
726
+ }
727
+ },
728
+ "$auto$simplemap.cc:227:simplemap_lognot$176": {
729
+ "hide_name": 1,
730
+ "type": "$_NOT_",
731
+ "parameters": {
732
+ },
733
+ "attributes": {
734
+ "src": "verilog/74xx/74162.v:43.39-43.39|verilog/74xx/74162.v:37.7-51.14"
735
+ },
736
+ "port_directions": {
737
+ "A": "input",
738
+ "Y": "output"
739
+ },
740
+ "connections": {
741
+ "A": [ 42 ],
742
+ "Y": [ 34 ]
743
+ }
744
+ },
745
+ "$auto$simplemap.cc:227:simplemap_lognot$191": {
746
+ "hide_name": 1,
747
+ "type": "$_NOT_",
748
+ "parameters": {
749
+ },
750
+ "attributes": {
751
+ "src": "verilog/74xx/74162.v:41.39-41.39|verilog/74xx/74162.v:37.7-51.14"
752
+ },
753
+ "port_directions": {
754
+ "A": "input",
755
+ "Y": "output"
756
+ },
757
+ "connections": {
758
+ "A": [ 43 ],
759
+ "Y": [ 55 ]
760
+ }
761
+ },
762
+ "$auto$simplemap.cc:227:simplemap_lognot$206": {
763
+ "hide_name": 1,
764
+ "type": "$_NOT_",
765
+ "parameters": {
766
+ },
767
+ "attributes": {
768
+ "src": "verilog/74xx/74162.v:40.39-40.39|verilog/74xx/74162.v:37.7-51.14"
769
+ },
770
+ "port_directions": {
771
+ "A": "input",
772
+ "Y": "output"
773
+ },
774
+ "connections": {
775
+ "A": [ 45 ],
776
+ "Y": [ 49 ]
777
+ }
778
+ },
779
+ "$auto$simplemap.cc:227:simplemap_lognot$221": {
780
+ "hide_name": 1,
781
+ "type": "$_NOT_",
782
+ "parameters": {
783
+ },
784
+ "attributes": {
785
+ "src": "verilog/74xx/74162.v:39.39-39.39|verilog/74xx/74162.v:37.7-51.14"
786
+ },
787
+ "port_directions": {
788
+ "A": "input",
789
+ "Y": "output"
790
+ },
791
+ "connections": {
792
+ "A": [ 47 ],
793
+ "Y": [ 50 ]
794
+ }
795
+ },
796
+ "$auto$simplemap.cc:227:simplemap_lognot$236": {
797
+ "hide_name": 1,
798
+ "type": "$_NOT_",
799
+ "parameters": {
800
+ },
801
+ "attributes": {
802
+ "src": "verilog/74xx/74162.v:37.23-37.23|verilog/74xx/74162.v:37.7-51.14"
803
+ },
804
+ "port_directions": {
805
+ "A": "input",
806
+ "Y": "output"
807
+ },
808
+ "connections": {
809
+ "A": [ 48 ],
810
+ "Y": [ 52 ]
811
+ }
812
+ },
813
+ "$auto$simplemap.cc:256:simplemap_logbin$112": {
814
+ "hide_name": 1,
815
+ "type": "$_AND_",
816
+ "parameters": {
817
+ },
818
+ "attributes": {
819
+ "src": "verilog/74xx/74162.v:35.9-35.24"
820
+ },
821
+ "port_directions": {
822
+ "A": "input",
823
+ "B": "input",
824
+ "Y": "output"
825
+ },
826
+ "connections": {
827
+ "A": [ 3 ],
828
+ "B": [ 4 ],
829
+ "Y": [ 58 ]
830
+ }
831
+ },
832
+ "$auto$simplemap.cc:256:simplemap_logbin$113": {
833
+ "hide_name": 1,
834
+ "type": "$_AND_",
835
+ "parameters": {
836
+ },
837
+ "attributes": {
838
+ "src": "verilog/74xx/74162.v:35.9-35.31"
839
+ },
840
+ "port_directions": {
841
+ "A": "input",
842
+ "B": "input",
843
+ "Y": "output"
844
+ },
845
+ "connections": {
846
+ "A": [ 58 ],
847
+ "B": [ 5 ],
848
+ "Y": [ 54 ]
849
+ }
850
+ },
851
+ "$auto$simplemap.cc:256:simplemap_logbin$118": {
852
+ "hide_name": 1,
853
+ "type": "$_AND_",
854
+ "parameters": {
855
+ },
856
+ "attributes": {
857
+ "src": "verilog/74xx/74162.v:57.22-57.49"
858
+ },
859
+ "port_directions": {
860
+ "A": "input",
861
+ "B": "input",
862
+ "Y": "output"
863
+ },
864
+ "connections": {
865
+ "A": [ 4 ],
866
+ "B": [ 31 ],
867
+ "Y": [ 11 ]
868
+ }
869
+ },
870
+ "$auto$simplemap.cc:298:simplemap_mux$237": {
871
+ "hide_name": 1,
872
+ "type": "$_MUX_",
873
+ "parameters": {
874
+ },
875
+ "attributes": {
876
+ "src": "verilog/74xx/74162.v:35.9-35.31|verilog/74xx/74162.v:35.5-52.8"
877
+ },
878
+ "port_directions": {
879
+ "A": "input",
880
+ "B": "input",
881
+ "S": "input",
882
+ "Y": "output"
883
+ },
884
+ "connections": {
885
+ "A": [ 6 ],
886
+ "B": [ 59 ],
887
+ "S": [ 54 ],
888
+ "Y": [ 16 ]
889
+ }
890
+ },
891
+ "$auto$simplemap.cc:298:simplemap_mux$238": {
892
+ "hide_name": 1,
893
+ "type": "$_MUX_",
894
+ "parameters": {
895
+ },
896
+ "attributes": {
897
+ "src": "verilog/74xx/74162.v:35.9-35.31|verilog/74xx/74162.v:35.5-52.8"
898
+ },
899
+ "port_directions": {
900
+ "A": "input",
901
+ "B": "input",
902
+ "S": "input",
903
+ "Y": "output"
904
+ },
905
+ "connections": {
906
+ "A": [ 7 ],
907
+ "B": [ 60 ],
908
+ "S": [ 54 ],
909
+ "Y": [ 18 ]
910
+ }
911
+ },
912
+ "$auto$simplemap.cc:298:simplemap_mux$239": {
913
+ "hide_name": 1,
914
+ "type": "$_MUX_",
915
+ "parameters": {
916
+ },
917
+ "attributes": {
918
+ "src": "verilog/74xx/74162.v:35.9-35.31|verilog/74xx/74162.v:35.5-52.8"
919
+ },
920
+ "port_directions": {
921
+ "A": "input",
922
+ "B": "input",
923
+ "S": "input",
924
+ "Y": "output"
925
+ },
926
+ "connections": {
927
+ "A": [ 8 ],
928
+ "B": [ 61 ],
929
+ "S": [ 54 ],
930
+ "Y": [ 19 ]
931
+ }
932
+ },
933
+ "$auto$simplemap.cc:298:simplemap_mux$240": {
934
+ "hide_name": 1,
935
+ "type": "$_MUX_",
936
+ "parameters": {
937
+ },
938
+ "attributes": {
939
+ "src": "verilog/74xx/74162.v:35.9-35.31|verilog/74xx/74162.v:35.5-52.8"
940
+ },
941
+ "port_directions": {
942
+ "A": "input",
943
+ "B": "input",
944
+ "S": "input",
945
+ "Y": "output"
946
+ },
947
+ "connections": {
948
+ "A": [ 9 ],
949
+ "B": [ 62 ],
950
+ "S": [ 54 ],
951
+ "Y": [ 20 ]
952
+ }
953
+ },
954
+ "$auto$simplemap.cc:298:simplemap_mux$287": {
955
+ "hide_name": 1,
956
+ "type": "$_MUX_",
957
+ "parameters": {
958
+ },
959
+ "attributes": {
960
+ "src": "verilog/74xx/74162.v:46.39-46.39|verilog/74xx/74162.v:37.7-51.14|/share/techmap.v:605.13-605.25"
961
+ },
962
+ "port_directions": {
963
+ "A": "input",
964
+ "B": "input",
965
+ "S": "input",
966
+ "Y": "output"
967
+ },
968
+ "connections": {
969
+ "A": [ 24 ],
970
+ "B": [ 53 ],
971
+ "S": [ 57 ],
972
+ "Y": [ 59 ]
973
+ }
974
+ },
975
+ "$auto$simplemap.cc:298:simplemap_mux$288": {
976
+ "hide_name": 1,
977
+ "type": "$_MUX_",
978
+ "parameters": {
979
+ },
980
+ "attributes": {
981
+ "src": "verilog/74xx/74162.v:46.39-46.39|verilog/74xx/74162.v:37.7-51.14|/share/techmap.v:605.13-605.25"
982
+ },
983
+ "port_directions": {
984
+ "A": "input",
985
+ "B": "input",
986
+ "S": "input",
987
+ "Y": "output"
988
+ },
989
+ "connections": {
990
+ "A": [ 26 ],
991
+ "B": [ "0" ],
992
+ "S": [ 57 ],
993
+ "Y": [ 60 ]
994
+ }
995
+ },
996
+ "$auto$simplemap.cc:298:simplemap_mux$289": {
997
+ "hide_name": 1,
998
+ "type": "$_MUX_",
999
+ "parameters": {
1000
+ },
1001
+ "attributes": {
1002
+ "src": "verilog/74xx/74162.v:46.39-46.39|verilog/74xx/74162.v:37.7-51.14|/share/techmap.v:605.13-605.25"
1003
+ },
1004
+ "port_directions": {
1005
+ "A": "input",
1006
+ "B": "input",
1007
+ "S": "input",
1008
+ "Y": "output"
1009
+ },
1010
+ "connections": {
1011
+ "A": [ 28 ],
1012
+ "B": [ 55 ],
1013
+ "S": [ 57 ],
1014
+ "Y": [ 61 ]
1015
+ }
1016
+ },
1017
+ "$auto$simplemap.cc:298:simplemap_mux$290": {
1018
+ "hide_name": 1,
1019
+ "type": "$_MUX_",
1020
+ "parameters": {
1021
+ },
1022
+ "attributes": {
1023
+ "src": "verilog/74xx/74162.v:46.39-46.39|verilog/74xx/74162.v:37.7-51.14|/share/techmap.v:605.13-605.25"
1024
+ },
1025
+ "port_directions": {
1026
+ "A": "input",
1027
+ "B": "input",
1028
+ "S": "input",
1029
+ "Y": "output"
1030
+ },
1031
+ "connections": {
1032
+ "A": [ 30 ],
1033
+ "B": [ 53 ],
1034
+ "S": [ 57 ],
1035
+ "Y": [ 62 ]
1036
+ }
1037
+ }
1038
+ },
1039
+ "netnames": {
1040
+ "$auto$opt_dff.cc:247:make_patterns_logic$32": {
1041
+ "hide_name": 1,
1042
+ "bits": [ 17 ],
1043
+ "attributes": {
1044
+ }
1045
+ },
1046
+ "$auto$rtlil.cc:3377:NotGate$876": {
1047
+ "hide_name": 1,
1048
+ "bits": [ 22 ],
1049
+ "attributes": {
1050
+ }
1051
+ },
1052
+ "$auto$rtlil.cc:3377:NotGate$880": {
1053
+ "hide_name": 1,
1054
+ "bits": [ 21 ],
1055
+ "attributes": {
1056
+ }
1057
+ },
1058
+ "$auto$rtlil.cc:3377:NotGate$882": {
1059
+ "hide_name": 1,
1060
+ "bits": [ 23 ],
1061
+ "attributes": {
1062
+ }
1063
+ },
1064
+ "$auto$rtlil.cc:3377:NotGate$914": {
1065
+ "hide_name": 1,
1066
+ "bits": [ 25 ],
1067
+ "attributes": {
1068
+ }
1069
+ },
1070
+ "$auto$simplemap.cc:148:simplemap_reduce$114": {
1071
+ "hide_name": 1,
1072
+ "bits": [ 33 ],
1073
+ "attributes": {
1074
+ }
1075
+ },
1076
+ "$auto$simplemap.cc:148:simplemap_reduce$131": {
1077
+ "hide_name": 1,
1078
+ "bits": [ 36, 37 ],
1079
+ "attributes": {
1080
+ }
1081
+ },
1082
+ "$auto$simplemap.cc:148:simplemap_reduce$155": {
1083
+ "hide_name": 1,
1084
+ "bits": [ 39, 40 ],
1085
+ "attributes": {
1086
+ }
1087
+ },
1088
+ "$auto$simplemap.cc:148:simplemap_reduce$200": {
1089
+ "hide_name": 1,
1090
+ "bits": [ 44, 40 ],
1091
+ "attributes": {
1092
+ }
1093
+ },
1094
+ "$auto$simplemap.cc:148:simplemap_reduce$215": {
1095
+ "hide_name": 1,
1096
+ "bits": [ 46, 40 ],
1097
+ "attributes": {
1098
+ }
1099
+ },
1100
+ "$auto$simplemap.cc:148:simplemap_reduce$245": {
1101
+ "hide_name": 1,
1102
+ "bits": [ 51 ],
1103
+ "attributes": {
1104
+ }
1105
+ },
1106
+ "$auto$simplemap.cc:148:simplemap_reduce$291": {
1107
+ "hide_name": 1,
1108
+ "bits": [ 56 ],
1109
+ "attributes": {
1110
+ }
1111
+ },
1112
+ "$auto$simplemap.cc:271:simplemap_eqne$249": {
1113
+ "hide_name": 1,
1114
+ "bits": [ 25, 54 ],
1115
+ "attributes": {
1116
+ }
1117
+ },
1118
+ "$auto$simplemap.cc:277:simplemap_eqne$129": {
1119
+ "hide_name": 1,
1120
+ "bits": [ 38 ],
1121
+ "attributes": {
1122
+ }
1123
+ },
1124
+ "$auto$simplemap.cc:277:simplemap_eqne$153": {
1125
+ "hide_name": 1,
1126
+ "bits": [ 41 ],
1127
+ "attributes": {
1128
+ }
1129
+ },
1130
+ "$auto$simplemap.cc:277:simplemap_eqne$168": {
1131
+ "hide_name": 1,
1132
+ "bits": [ 42 ],
1133
+ "attributes": {
1134
+ }
1135
+ },
1136
+ "$auto$simplemap.cc:277:simplemap_eqne$183": {
1137
+ "hide_name": 1,
1138
+ "bits": [ 43 ],
1139
+ "attributes": {
1140
+ }
1141
+ },
1142
+ "$auto$simplemap.cc:277:simplemap_eqne$198": {
1143
+ "hide_name": 1,
1144
+ "bits": [ 45 ],
1145
+ "attributes": {
1146
+ }
1147
+ },
1148
+ "$auto$simplemap.cc:277:simplemap_eqne$213": {
1149
+ "hide_name": 1,
1150
+ "bits": [ 47 ],
1151
+ "attributes": {
1152
+ }
1153
+ },
1154
+ "$auto$simplemap.cc:277:simplemap_eqne$228": {
1155
+ "hide_name": 1,
1156
+ "bits": [ 48 ],
1157
+ "attributes": {
1158
+ }
1159
+ },
1160
+ "$eq$verilog/74xx/74162.v:57$7_Y": {
1161
+ "hide_name": 1,
1162
+ "bits": [ 31 ],
1163
+ "attributes": {
1164
+ "src": "verilog/74xx/74162.v:57.29-57.49"
1165
+ }
1166
+ },
1167
+ "$logic_and$verilog/74xx/74162.v:35$5_Y": {
1168
+ "hide_name": 1,
1169
+ "bits": [ 58 ],
1170
+ "attributes": {
1171
+ "src": "verilog/74xx/74162.v:35.9-35.24"
1172
+ }
1173
+ },
1174
+ "$procmux$12.B_AND_S": {
1175
+ "hide_name": 1,
1176
+ "bits": [ "0", "0", "0", "0", "0", "0", 55, "0", 53, "0", "0", 53 ],
1177
+ "attributes": {
1178
+ "force_downto": "00000000000000000000000000000001",
1179
+ "src": "verilog/74xx/74162.v:46.39-46.39|verilog/74xx/74162.v:37.7-51.14|/share/techmap.v:591.28-591.35"
1180
+ }
1181
+ },
1182
+ "$procmux$12.S": {
1183
+ "hide_name": 1,
1184
+ "bits": [ 35, 55, 53 ],
1185
+ "attributes": {
1186
+ "force_downto": "00000000000000000000000000000001",
1187
+ "src": "verilog/74xx/74162.v:46.39-46.39|verilog/74xx/74162.v:37.7-51.14|/share/techmap.v:581.22-581.23"
1188
+ }
1189
+ },
1190
+ "$procmux$12.Y": {
1191
+ "hide_name": 1,
1192
+ "bits": [ 59, 60, 61, 62 ],
1193
+ "attributes": {
1194
+ "force_downto": "00000000000000000000000000000001",
1195
+ "src": "verilog/74xx/74162.v:46.39-46.39|verilog/74xx/74162.v:37.7-51.14|/share/techmap.v:583.21-583.22"
1196
+ }
1197
+ },
1198
+ "$procmux$14_CMP": {
1199
+ "hide_name": 1,
1200
+ "bits": [ 32 ],
1201
+ "attributes": {
1202
+ }
1203
+ },
1204
+ "$procmux$15_CMP": {
1205
+ "hide_name": 1,
1206
+ "bits": [ 34 ],
1207
+ "attributes": {
1208
+ }
1209
+ },
1210
+ "$procmux$17_CMP": {
1211
+ "hide_name": 1,
1212
+ "bits": [ 49 ],
1213
+ "attributes": {
1214
+ }
1215
+ },
1216
+ "$procmux$18_CMP": {
1217
+ "hide_name": 1,
1218
+ "bits": [ 50 ],
1219
+ "attributes": {
1220
+ }
1221
+ },
1222
+ "$procmux$19_CMP": {
1223
+ "hide_name": 1,
1224
+ "bits": [ 52 ],
1225
+ "attributes": {
1226
+ }
1227
+ },
1228
+ "$procmux$20_Y": {
1229
+ "hide_name": 1,
1230
+ "bits": [ 16, 18, 19, 20 ],
1231
+ "attributes": {
1232
+ }
1233
+ },
1234
+ "$techmap$add$verilog/74xx/74162.v:20$1.$auto$alumacc.cc:512:replace_alu$109.CO": {
1235
+ "hide_name": 1,
1236
+ "bits": [ 12, 27, 29, 63, "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ],
1237
+ "attributes": {
1238
+ "force_downto": "00000000000000000000000000000001",
1239
+ "src": "verilog/74xx/74162.v:20.17-20.30|/share/techmap.v:274.23-274.25",
1240
+ "unused_bits": "3"
1241
+ }
1242
+ },
1243
+ "$techmap$procmux$12.$reduce_or$/share/techmap.v:605$138_Y": {
1244
+ "hide_name": 1,
1245
+ "bits": [ 57 ],
1246
+ "attributes": {
1247
+ "src": "verilog/74xx/74162.v:46.39-46.39|verilog/74xx/74162.v:37.7-51.14|/share/techmap.v:605.13-605.15"
1248
+ }
1249
+ },
1250
+ "Clear_bar": {
1251
+ "hide_name": 0,
1252
+ "bits": [ 2 ],
1253
+ "attributes": {
1254
+ "src": "verilog/74xx/74162.v:5.9-5.18"
1255
+ }
1256
+ },
1257
+ "Clk": {
1258
+ "hide_name": 0,
1259
+ "bits": [ 10 ],
1260
+ "attributes": {
1261
+ "src": "verilog/74xx/74162.v:10.9-10.12"
1262
+ }
1263
+ },
1264
+ "D": {
1265
+ "hide_name": 0,
1266
+ "bits": [ 6, 7, 8, 9 ],
1267
+ "attributes": {
1268
+ "src": "verilog/74xx/74162.v:9.21-9.22"
1269
+ }
1270
+ },
1271
+ "ENP": {
1272
+ "hide_name": 0,
1273
+ "bits": [ 5 ],
1274
+ "attributes": {
1275
+ "src": "verilog/74xx/74162.v:8.9-8.12"
1276
+ }
1277
+ },
1278
+ "ENT": {
1279
+ "hide_name": 0,
1280
+ "bits": [ 4 ],
1281
+ "attributes": {
1282
+ "src": "verilog/74xx/74162.v:7.9-7.12"
1283
+ }
1284
+ },
1285
+ "Load_bar": {
1286
+ "hide_name": 0,
1287
+ "bits": [ 3 ],
1288
+ "attributes": {
1289
+ "src": "verilog/74xx/74162.v:6.9-6.17"
1290
+ }
1291
+ },
1292
+ "Q": {
1293
+ "hide_name": 0,
1294
+ "bits": [ 12, 13, 14, 15 ],
1295
+ "attributes": {
1296
+ "src": "verilog/74xx/74162.v:12.22-12.23"
1297
+ }
1298
+ },
1299
+ "Q_current": {
1300
+ "hide_name": 0,
1301
+ "bits": [ 12, 13, 14, 15 ],
1302
+ "attributes": {
1303
+ "src": "verilog/74xx/74162.v:17.17-17.26"
1304
+ }
1305
+ },
1306
+ "Q_next": {
1307
+ "hide_name": 0,
1308
+ "bits": [ 24, 26, 28, 30 ],
1309
+ "attributes": {
1310
+ "src": "verilog/74xx/74162.v:18.18-18.24"
1311
+ }
1312
+ },
1313
+ "RCO": {
1314
+ "hide_name": 0,
1315
+ "bits": [ 11 ],
1316
+ "attributes": {
1317
+ "src": "verilog/74xx/74162.v:11.10-11.13"
1318
+ }
1319
+ },
1320
+ "RCO_current": {
1321
+ "hide_name": 0,
1322
+ "bits": [ 11 ],
1323
+ "attributes": {
1324
+ "src": "verilog/74xx/74162.v:16.6-16.17"
1325
+ }
1326
+ }
1327
+ }
1328
+ }
1329
+ }
1330
+ }
1331
+