-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCPU_Bus.bdf
executable file
·2149 lines (2149 loc) · 52.3 KB
/
CPU_Bus.bdf
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2013 Altera Corporation
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, Altera MegaCore Function License
Agreement, or other applicable license agreement, including,
without limitation, that your use is for the sole purpose of
programming logic devices manufactured by Altera and sold by
Altera or its authorized distributors. Please refer to the
applicable agreement for further details.
*/
(header "graphic" (version "1.4"))
(symbol
(rect 312 -128 456 432)
(text "lpm_mux0" (rect 43 0 113 16)(font "Arial" (font_size 10)))
(text "inst2" (rect 8 544 31 556)(font "Arial" ))
(port
(pt 0 40)
(input)
(text "data31x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data31x[31..0]" (rect 4 26 85 40)(font "Arial" (font_size 8)))
(line (pt 0 40)(pt 64 40)(line_width 3))
)
(port
(pt 0 56)
(input)
(text "data30x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data30x[31..0]" (rect 4 42 85 56)(font "Arial" (font_size 8)))
(line (pt 0 56)(pt 64 56)(line_width 3))
)
(port
(pt 0 72)
(input)
(text "data29x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data29x[31..0]" (rect 4 58 85 72)(font "Arial" (font_size 8)))
(line (pt 0 72)(pt 64 72)(line_width 3))
)
(port
(pt 0 88)
(input)
(text "data28x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data28x[31..0]" (rect 4 74 85 88)(font "Arial" (font_size 8)))
(line (pt 0 88)(pt 64 88)(line_width 3))
)
(port
(pt 0 104)
(input)
(text "data27x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data27x[31..0]" (rect 4 90 85 104)(font "Arial" (font_size 8)))
(line (pt 0 104)(pt 64 104)(line_width 3))
)
(port
(pt 0 120)
(input)
(text "data26x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data26x[31..0]" (rect 4 106 85 120)(font "Arial" (font_size 8)))
(line (pt 0 120)(pt 64 120)(line_width 3))
)
(port
(pt 0 136)
(input)
(text "data25x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data25x[31..0]" (rect 4 122 85 136)(font "Arial" (font_size 8)))
(line (pt 0 136)(pt 64 136)(line_width 3))
)
(port
(pt 0 152)
(input)
(text "data24x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data24x[31..0]" (rect 4 138 85 152)(font "Arial" (font_size 8)))
(line (pt 0 152)(pt 64 152)(line_width 3))
)
(port
(pt 0 168)
(input)
(text "data23x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data23x[31..0]" (rect 4 154 85 168)(font "Arial" (font_size 8)))
(line (pt 0 168)(pt 64 168)(line_width 3))
)
(port
(pt 0 184)
(input)
(text "data22x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data22x[31..0]" (rect 4 170 85 184)(font "Arial" (font_size 8)))
(line (pt 0 184)(pt 64 184)(line_width 3))
)
(port
(pt 0 200)
(input)
(text "data21x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data21x[31..0]" (rect 4 186 85 200)(font "Arial" (font_size 8)))
(line (pt 0 200)(pt 64 200)(line_width 3))
)
(port
(pt 0 216)
(input)
(text "data20x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data20x[31..0]" (rect 4 202 85 216)(font "Arial" (font_size 8)))
(line (pt 0 216)(pt 64 216)(line_width 3))
)
(port
(pt 0 232)
(input)
(text "data19x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data19x[31..0]" (rect 4 218 85 232)(font "Arial" (font_size 8)))
(line (pt 0 232)(pt 64 232)(line_width 3))
)
(port
(pt 0 248)
(input)
(text "data18x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data18x[31..0]" (rect 4 234 85 248)(font "Arial" (font_size 8)))
(line (pt 0 248)(pt 64 248)(line_width 3))
)
(port
(pt 0 264)
(input)
(text "data17x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data17x[31..0]" (rect 4 250 85 264)(font "Arial" (font_size 8)))
(line (pt 0 264)(pt 64 264)(line_width 3))
)
(port
(pt 0 280)
(input)
(text "data16x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data16x[31..0]" (rect 4 266 85 280)(font "Arial" (font_size 8)))
(line (pt 0 280)(pt 64 280)(line_width 3))
)
(port
(pt 0 296)
(input)
(text "data15x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data15x[31..0]" (rect 4 282 85 296)(font "Arial" (font_size 8)))
(line (pt 0 296)(pt 64 296)(line_width 3))
)
(port
(pt 0 312)
(input)
(text "data14x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data14x[31..0]" (rect 4 298 85 312)(font "Arial" (font_size 8)))
(line (pt 0 312)(pt 64 312)(line_width 3))
)
(port
(pt 0 328)
(input)
(text "data13x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data13x[31..0]" (rect 4 314 85 328)(font "Arial" (font_size 8)))
(line (pt 0 328)(pt 64 328)(line_width 3))
)
(port
(pt 0 344)
(input)
(text "data12x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data12x[31..0]" (rect 4 330 85 344)(font "Arial" (font_size 8)))
(line (pt 0 344)(pt 64 344)(line_width 3))
)
(port
(pt 0 360)
(input)
(text "data11x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data11x[31..0]" (rect 4 346 85 360)(font "Arial" (font_size 8)))
(line (pt 0 360)(pt 64 360)(line_width 3))
)
(port
(pt 0 376)
(input)
(text "data10x[31..0]" (rect 0 0 81 14)(font "Arial" (font_size 8)))
(text "data10x[31..0]" (rect 4 362 85 376)(font "Arial" (font_size 8)))
(line (pt 0 376)(pt 64 376)(line_width 3))
)
(port
(pt 0 392)
(input)
(text "data9x[31..0]" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "data9x[31..0]" (rect 4 378 78 392)(font "Arial" (font_size 8)))
(line (pt 0 392)(pt 64 392)(line_width 3))
)
(port
(pt 0 408)
(input)
(text "data8x[31..0]" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "data8x[31..0]" (rect 4 394 78 408)(font "Arial" (font_size 8)))
(line (pt 0 408)(pt 64 408)(line_width 3))
)
(port
(pt 0 424)
(input)
(text "data7x[31..0]" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "data7x[31..0]" (rect 4 410 78 424)(font "Arial" (font_size 8)))
(line (pt 0 424)(pt 64 424)(line_width 3))
)
(port
(pt 0 440)
(input)
(text "data6x[31..0]" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "data6x[31..0]" (rect 4 426 78 440)(font "Arial" (font_size 8)))
(line (pt 0 440)(pt 64 440)(line_width 3))
)
(port
(pt 0 456)
(input)
(text "data5x[31..0]" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "data5x[31..0]" (rect 4 442 78 456)(font "Arial" (font_size 8)))
(line (pt 0 456)(pt 64 456)(line_width 3))
)
(port
(pt 0 472)
(input)
(text "data4x[31..0]" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "data4x[31..0]" (rect 4 458 78 472)(font "Arial" (font_size 8)))
(line (pt 0 472)(pt 64 472)(line_width 3))
)
(port
(pt 0 488)
(input)
(text "data3x[31..0]" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "data3x[31..0]" (rect 4 474 78 488)(font "Arial" (font_size 8)))
(line (pt 0 488)(pt 64 488)(line_width 3))
)
(port
(pt 0 504)
(input)
(text "data2x[31..0]" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "data2x[31..0]" (rect 4 490 78 504)(font "Arial" (font_size 8)))
(line (pt 0 504)(pt 64 504)(line_width 3))
)
(port
(pt 0 520)
(input)
(text "data1x[31..0]" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "data1x[31..0]" (rect 4 506 78 520)(font "Arial" (font_size 8)))
(line (pt 0 520)(pt 64 520)(line_width 3))
)
(port
(pt 0 536)
(input)
(text "data0x[31..0]" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "data0x[31..0]" (rect 4 522 78 536)(font "Arial" (font_size 8)))
(line (pt 0 536)(pt 64 536)(line_width 3))
)
(port
(pt 72 560)
(input)
(text "sel[4..0]" (rect 0 0 14 44)(font "Arial" (font_size 8))(vertical))
(text "sel[4..0]" (rect 65 507 79 551)(font "Arial" (font_size 8))(vertical))
(line (pt 72 560)(pt 72 548)(line_width 3))
)
(port
(pt 144 288)
(output)
(text "result[31..0]" (rect 0 0 67 14)(font "Arial" (font_size 8)))
(text "result[31..0]" (rect 84 274 151 288)(font "Arial" (font_size 8)))
(line (pt 144 288)(pt 80 288)(line_width 3))
)
(drawing
(line (pt 64 24)(pt 64 552))
(line (pt 64 24)(pt 80 32))
(line (pt 64 552)(pt 80 544))
(line (pt 80 32)(pt 80 544))
(line (pt 0 0)(pt 146 0))
(line (pt 146 0)(pt 146 562))
(line (pt 0 562)(pt 146 562))
(line (pt 0 0)(pt 0 562))
(line (pt 0 0)(pt 0 0))
(line (pt 0 0)(pt 0 0))
(line (pt 0 0)(pt 0 0))
(line (pt 0 0)(pt 0 0))
)
)
(symbol
(rect 568 -128 728 432)
(text "lpm_encoder" (rect 5 0 67 12)(font "Arial" ))
(text "inst" (rect 8 544 25 556)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "eq0" (rect 0 0 17 12)(font "Arial" ))
(text "eq0" (rect 21 27 38 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32))
)
(port
(pt 0 48)
(input)
(text "eq1" (rect 0 0 17 12)(font "Arial" ))
(text "eq1" (rect 21 43 38 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 0 64)
(input)
(text "eq2" (rect 0 0 17 12)(font "Arial" ))
(text "eq2" (rect 21 59 38 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "eq3" (rect 0 0 17 12)(font "Arial" ))
(text "eq3" (rect 21 75 38 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 0 96)
(input)
(text "eq4" (rect 0 0 17 12)(font "Arial" ))
(text "eq4" (rect 21 91 38 103)(font "Arial" ))
(line (pt 0 96)(pt 16 96))
)
(port
(pt 0 112)
(input)
(text "eq5" (rect 0 0 17 12)(font "Arial" ))
(text "eq5" (rect 21 107 38 119)(font "Arial" ))
(line (pt 0 112)(pt 16 112))
)
(port
(pt 0 128)
(input)
(text "eq6" (rect 0 0 17 12)(font "Arial" ))
(text "eq6" (rect 21 123 38 135)(font "Arial" ))
(line (pt 0 128)(pt 16 128))
)
(port
(pt 0 144)
(input)
(text "eq7" (rect 0 0 17 12)(font "Arial" ))
(text "eq7" (rect 21 139 38 151)(font "Arial" ))
(line (pt 0 144)(pt 16 144))
)
(port
(pt 0 160)
(input)
(text "eq8" (rect 0 0 17 12)(font "Arial" ))
(text "eq8" (rect 21 155 38 167)(font "Arial" ))
(line (pt 0 160)(pt 16 160))
)
(port
(pt 0 176)
(input)
(text "eq9" (rect 0 0 17 12)(font "Arial" ))
(text "eq9" (rect 21 171 38 183)(font "Arial" ))
(line (pt 0 176)(pt 16 176))
)
(port
(pt 0 192)
(input)
(text "eq10" (rect 0 0 23 12)(font "Arial" ))
(text "eq10" (rect 21 187 44 199)(font "Arial" ))
(line (pt 0 192)(pt 16 192))
)
(port
(pt 0 208)
(input)
(text "eq11" (rect 0 0 23 12)(font "Arial" ))
(text "eq11" (rect 21 203 44 215)(font "Arial" ))
(line (pt 0 208)(pt 16 208))
)
(port
(pt 0 224)
(input)
(text "eq12" (rect 0 0 23 12)(font "Arial" ))
(text "eq12" (rect 21 219 44 231)(font "Arial" ))
(line (pt 0 224)(pt 16 224))
)
(port
(pt 0 240)
(input)
(text "eq13" (rect 0 0 23 12)(font "Arial" ))
(text "eq13" (rect 21 235 44 247)(font "Arial" ))
(line (pt 0 240)(pt 16 240))
)
(port
(pt 0 256)
(input)
(text "eq14" (rect 0 0 23 12)(font "Arial" ))
(text "eq14" (rect 21 251 44 263)(font "Arial" ))
(line (pt 0 256)(pt 16 256))
)
(port
(pt 0 272)
(input)
(text "eq15" (rect 0 0 23 12)(font "Arial" ))
(text "eq15" (rect 21 267 44 279)(font "Arial" ))
(line (pt 0 272)(pt 16 272))
)
(port
(pt 0 288)
(input)
(text "eq16" (rect 0 0 23 12)(font "Arial" ))
(text "eq16" (rect 21 283 44 295)(font "Arial" ))
(line (pt 0 288)(pt 16 288))
)
(port
(pt 0 304)
(input)
(text "eq17" (rect 0 0 23 12)(font "Arial" ))
(text "eq17" (rect 21 299 44 311)(font "Arial" ))
(line (pt 0 304)(pt 16 304))
)
(port
(pt 0 320)
(input)
(text "eq18" (rect 0 0 23 12)(font "Arial" ))
(text "eq18" (rect 21 315 44 327)(font "Arial" ))
(line (pt 0 320)(pt 16 320))
)
(port
(pt 0 336)
(input)
(text "eq19" (rect 0 0 23 12)(font "Arial" ))
(text "eq19" (rect 21 331 44 343)(font "Arial" ))
(line (pt 0 336)(pt 16 336))
)
(port
(pt 0 352)
(input)
(text "eq20" (rect 0 0 23 12)(font "Arial" ))
(text "eq20" (rect 21 347 44 359)(font "Arial" ))
(line (pt 0 352)(pt 16 352))
)
(port
(pt 0 368)
(input)
(text "eq21" (rect 0 0 23 12)(font "Arial" ))
(text "eq21" (rect 21 363 44 375)(font "Arial" ))
(line (pt 0 368)(pt 16 368))
)
(port
(pt 0 384)
(input)
(text "eq22" (rect 0 0 23 12)(font "Arial" ))
(text "eq22" (rect 21 379 44 391)(font "Arial" ))
(line (pt 0 384)(pt 16 384))
)
(port
(pt 0 400)
(input)
(text "eq23" (rect 0 0 23 12)(font "Arial" ))
(text "eq23" (rect 21 395 44 407)(font "Arial" ))
(line (pt 0 400)(pt 16 400))
)
(port
(pt 0 416)
(input)
(text "eq24" (rect 0 0 23 12)(font "Arial" ))
(text "eq24" (rect 21 411 44 423)(font "Arial" ))
(line (pt 0 416)(pt 16 416))
)
(port
(pt 0 432)
(input)
(text "eq25" (rect 0 0 23 12)(font "Arial" ))
(text "eq25" (rect 21 427 44 439)(font "Arial" ))
(line (pt 0 432)(pt 16 432))
)
(port
(pt 0 448)
(input)
(text "eq26" (rect 0 0 23 12)(font "Arial" ))
(text "eq26" (rect 21 443 44 455)(font "Arial" ))
(line (pt 0 448)(pt 16 448))
)
(port
(pt 0 464)
(input)
(text "eq27" (rect 0 0 23 12)(font "Arial" ))
(text "eq27" (rect 21 459 44 471)(font "Arial" ))
(line (pt 0 464)(pt 16 464))
)
(port
(pt 0 480)
(input)
(text "eq28" (rect 0 0 23 12)(font "Arial" ))
(text "eq28" (rect 21 475 44 487)(font "Arial" ))
(line (pt 0 480)(pt 16 480))
)
(port
(pt 0 496)
(input)
(text "eq29" (rect 0 0 23 12)(font "Arial" ))
(text "eq29" (rect 21 491 44 503)(font "Arial" ))
(line (pt 0 496)(pt 16 496))
)
(port
(pt 0 512)
(input)
(text "eq30" (rect 0 0 23 12)(font "Arial" ))
(text "eq30" (rect 21 507 44 519)(font "Arial" ))
(line (pt 0 512)(pt 16 512))
)
(port
(pt 0 528)
(input)
(text "eq31" (rect 0 0 23 12)(font "Arial" ))
(text "eq31" (rect 21 523 44 535)(font "Arial" ))
(line (pt 0 528)(pt 16 528))
)
(port
(pt 160 32)
(output)
(text "data[4..0]" (rect 0 0 47 12)(font "Arial" ))
(text "data[4..0]" (rect 100 27 147 39)(font "Arial" ))
(line (pt 160 32)(pt 144 32)(line_width 3))
)
(drawing
(rectangle (rect 16 16 144 544))
)
)
(symbol
(rect -720 -208 -512 -96)
(text "REG32" (rect 5 0 40 12)(font "Arial" ))
(text "REG0" (rect 8 96 37 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "D_IN[31..0]" (rect 0 0 57 12)(font "Arial" ))
(text "D_IN[31..0]" (rect 21 27 78 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "ENABLE" (rect 0 0 42 12)(font "Arial" ))
(text "ENABLE" (rect 21 43 63 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 0 64)
(input)
(text "CLK" (rect 0 0 21 12)(font "Arial" ))
(text "CLK" (rect 21 59 42 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "RESET" (rect 0 0 35 12)(font "Arial" ))
(text "RESET" (rect 21 75 56 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 208 32)
(output)
(text "D_OUT[31..0]" (rect 0 0 68 12)(font "Arial" ))
(text "D_OUT[31..0]" (rect 130 27 198 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 3))
)
(drawing
(rectangle (rect 16 16 192 96))
)
)
(symbol
(rect -720 -64 -512 48)
(text "REG32" (rect 5 0 40 12)(font "Arial" ))
(text "REG1" (rect 8 96 37 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "D_IN[31..0]" (rect 0 0 57 12)(font "Arial" ))
(text "D_IN[31..0]" (rect 21 27 78 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "ENABLE" (rect 0 0 42 12)(font "Arial" ))
(text "ENABLE" (rect 21 43 63 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 0 64)
(input)
(text "CLK" (rect 0 0 21 12)(font "Arial" ))
(text "CLK" (rect 21 59 42 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "RESET" (rect 0 0 35 12)(font "Arial" ))
(text "RESET" (rect 21 75 56 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 208 32)
(output)
(text "D_OUT[31..0]" (rect 0 0 68 12)(font "Arial" ))
(text "D_OUT[31..0]" (rect 130 27 198 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 3))
)
(drawing
(rectangle (rect 16 16 192 96))
)
)
(symbol
(rect -720 80 -512 192)
(text "REG32" (rect 5 0 40 12)(font "Arial" ))
(text "REG2" (rect 8 96 37 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "D_IN[31..0]" (rect 0 0 57 12)(font "Arial" ))
(text "D_IN[31..0]" (rect 21 27 78 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "ENABLE" (rect 0 0 42 12)(font "Arial" ))
(text "ENABLE" (rect 21 43 63 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 0 64)
(input)
(text "CLK" (rect 0 0 21 12)(font "Arial" ))
(text "CLK" (rect 21 59 42 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "RESET" (rect 0 0 35 12)(font "Arial" ))
(text "RESET" (rect 21 75 56 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 208 32)
(output)
(text "D_OUT[31..0]" (rect 0 0 68 12)(font "Arial" ))
(text "D_OUT[31..0]" (rect 130 27 198 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 3))
)
(drawing
(rectangle (rect 16 16 192 96))
)
)
(symbol
(rect -720 216 -512 328)
(text "REG32" (rect 5 0 40 12)(font "Arial" ))
(text "REG3" (rect 8 96 37 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "D_IN[31..0]" (rect 0 0 57 12)(font "Arial" ))
(text "D_IN[31..0]" (rect 21 27 78 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "ENABLE" (rect 0 0 42 12)(font "Arial" ))
(text "ENABLE" (rect 21 43 63 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 0 64)
(input)
(text "CLK" (rect 0 0 21 12)(font "Arial" ))
(text "CLK" (rect 21 59 42 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "RESET" (rect 0 0 35 12)(font "Arial" ))
(text "RESET" (rect 21 75 56 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 208 32)
(output)
(text "D_OUT[31..0]" (rect 0 0 68 12)(font "Arial" ))
(text "D_OUT[31..0]" (rect 130 27 198 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 3))
)
(drawing
(rectangle (rect 16 16 192 96))
)
)
(symbol
(rect -720 352 -512 464)
(text "REG32" (rect 5 0 40 12)(font "Arial" ))
(text "REG4" (rect 8 96 37 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "D_IN[31..0]" (rect 0 0 57 12)(font "Arial" ))
(text "D_IN[31..0]" (rect 21 27 78 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "ENABLE" (rect 0 0 42 12)(font "Arial" ))
(text "ENABLE" (rect 21 43 63 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 0 64)
(input)
(text "CLK" (rect 0 0 21 12)(font "Arial" ))
(text "CLK" (rect 21 59 42 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "RESET" (rect 0 0 35 12)(font "Arial" ))
(text "RESET" (rect 21 75 56 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 208 32)
(output)
(text "D_OUT[31..0]" (rect 0 0 68 12)(font "Arial" ))
(text "D_OUT[31..0]" (rect 130 27 198 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 3))
)
(drawing
(rectangle (rect 16 16 192 96))
)
)
(symbol
(rect -720 480 -512 592)
(text "REG32" (rect 5 0 40 12)(font "Arial" ))
(text "REG5" (rect 8 96 37 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "D_IN[31..0]" (rect 0 0 57 12)(font "Arial" ))
(text "D_IN[31..0]" (rect 21 27 78 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "ENABLE" (rect 0 0 42 12)(font "Arial" ))
(text "ENABLE" (rect 21 43 63 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 0 64)
(input)
(text "CLK" (rect 0 0 21 12)(font "Arial" ))
(text "CLK" (rect 21 59 42 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "RESET" (rect 0 0 35 12)(font "Arial" ))
(text "RESET" (rect 21 75 56 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 208 32)
(output)
(text "D_OUT[31..0]" (rect 0 0 68 12)(font "Arial" ))
(text "D_OUT[31..0]" (rect 130 27 198 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 3))
)
(drawing
(rectangle (rect 16 16 192 96))
)
)
(symbol
(rect -720 608 -512 720)
(text "REG32" (rect 5 0 40 12)(font "Arial" ))
(text "REG6" (rect 8 96 37 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "D_IN[31..0]" (rect 0 0 57 12)(font "Arial" ))
(text "D_IN[31..0]" (rect 21 27 78 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "ENABLE" (rect 0 0 42 12)(font "Arial" ))
(text "ENABLE" (rect 21 43 63 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 0 64)
(input)
(text "CLK" (rect 0 0 21 12)(font "Arial" ))
(text "CLK" (rect 21 59 42 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "RESET" (rect 0 0 35 12)(font "Arial" ))
(text "RESET" (rect 21 75 56 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 208 32)
(output)
(text "D_OUT[31..0]" (rect 0 0 68 12)(font "Arial" ))
(text "D_OUT[31..0]" (rect 130 27 198 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 3))
)
(drawing
(rectangle (rect 16 16 192 96))
)
)
(symbol
(rect -720 744 -512 856)
(text "REG32" (rect 5 0 40 12)(font "Arial" ))
(text "REG7" (rect 8 96 37 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "D_IN[31..0]" (rect 0 0 57 12)(font "Arial" ))
(text "D_IN[31..0]" (rect 21 27 78 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "ENABLE" (rect 0 0 42 12)(font "Arial" ))
(text "ENABLE" (rect 21 43 63 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 0 64)
(input)
(text "CLK" (rect 0 0 21 12)(font "Arial" ))
(text "CLK" (rect 21 59 42 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "RESET" (rect 0 0 35 12)(font "Arial" ))
(text "RESET" (rect 21 75 56 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 208 32)
(output)
(text "D_OUT[31..0]" (rect 0 0 68 12)(font "Arial" ))
(text "D_OUT[31..0]" (rect 130 27 198 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 3))
)
(drawing
(rectangle (rect 16 16 192 96))
)
)
(symbol
(rect -720 880 -512 992)
(text "REG32" (rect 5 0 40 12)(font "Arial" ))
(text "REG8" (rect 8 96 37 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "D_IN[31..0]" (rect 0 0 57 12)(font "Arial" ))
(text "D_IN[31..0]" (rect 21 27 78 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "ENABLE" (rect 0 0 42 12)(font "Arial" ))
(text "ENABLE" (rect 21 43 63 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 0 64)
(input)
(text "CLK" (rect 0 0 21 12)(font "Arial" ))
(text "CLK" (rect 21 59 42 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "RESET" (rect 0 0 35 12)(font "Arial" ))
(text "RESET" (rect 21 75 56 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 208 32)
(output)
(text "D_OUT[31..0]" (rect 0 0 68 12)(font "Arial" ))
(text "D_OUT[31..0]" (rect 130 27 198 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 3))
)
(drawing
(rectangle (rect 16 16 192 96))
)
)
(symbol
(rect -720 1016 -512 1128)
(text "REG32" (rect 5 0 40 12)(font "Arial" ))
(text "REG9" (rect 8 96 37 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "D_IN[31..0]" (rect 0 0 57 12)(font "Arial" ))
(text "D_IN[31..0]" (rect 21 27 78 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "ENABLE" (rect 0 0 42 12)(font "Arial" ))
(text "ENABLE" (rect 21 43 63 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 0 64)
(input)
(text "CLK" (rect 0 0 21 12)(font "Arial" ))
(text "CLK" (rect 21 59 42 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "RESET" (rect 0 0 35 12)(font "Arial" ))
(text "RESET" (rect 21 75 56 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 208 32)
(output)
(text "D_OUT[31..0]" (rect 0 0 68 12)(font "Arial" ))
(text "D_OUT[31..0]" (rect 130 27 198 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 3))
)
(drawing
(rectangle (rect 16 16 192 96))
)
)
(symbol
(rect -408 -192 -200 -80)
(text "REG32" (rect 5 0 40 12)(font "Arial" ))
(text "REG10" (rect 8 96 43 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "D_IN[31..0]" (rect 0 0 57 12)(font "Arial" ))
(text "D_IN[31..0]" (rect 21 27 78 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "ENABLE" (rect 0 0 42 12)(font "Arial" ))
(text "ENABLE" (rect 21 43 63 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 0 64)
(input)
(text "CLK" (rect 0 0 21 12)(font "Arial" ))
(text "CLK" (rect 21 59 42 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "RESET" (rect 0 0 35 12)(font "Arial" ))
(text "RESET" (rect 21 75 56 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 208 32)
(output)
(text "D_OUT[31..0]" (rect 0 0 68 12)(font "Arial" ))
(text "D_OUT[31..0]" (rect 130 27 198 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 3))
)
(drawing
(rectangle (rect 16 16 192 96))
)
)
(symbol
(rect -408 -56 -200 56)
(text "REG32" (rect 5 0 40 12)(font "Arial" ))
(text "REG11" (rect 8 96 43 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "D_IN[31..0]" (rect 0 0 57 12)(font "Arial" ))
(text "D_IN[31..0]" (rect 21 27 78 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))