-
Notifications
You must be signed in to change notification settings - Fork 0
/
o11.o
1743 lines (1527 loc) · 122 KB
/
o11.o
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
*** Important settings for the Xilinx Backend module ***
Synthesis top module: snake
FPGA part (PART): xc6slx16-3-csg324
Constraints file: lab.ucf
nice -n 19 make -f Makefile lab-synthdir/layoutdefault/design.bit PROJNAME="lab" S="snake.vhd GPU/GPU.vhd GMEM/GMEM.vhd CPU/cpu.vhd CPU/alu.vhd CPU/asr.vhd CPU/grx.vhd CPU/ir.vhd CPU/kr2.vhd CPU/pm.vhd CPU/pm.vhd CPU/kr1.vhd CPU/pc.vhd CPU/upc.vhd leddriver.vhd SPI/spi.vhd SPI/spimaster.vhd UART/UART.vhd Common/shiftregister.vhd Common/register.vhd Buss/buss.vhd CPU/grx_types.vhd Debugger/debugger.vhd Debugger/debugpak.vhd" U="lab.ucf" XST_OPT="" PART="xc6slx16-3-csg324" INCDIRS=""
make[1]: Entering directory `/edu/tobhu543/TSEA83/projekt'
*** Creating synthesis scripts ***
mkdir -p lab-synthdir/xst/synth
echo "-top $(basename $(echo snake.vhd | sed 's/\..*$//'))" >> lab-synthdir/xst/synth/design.scr.tmp
echo "-p xc6slx16-3-csg324" >> lab-synthdir/xst/synth/design.scr.tmp
echo >> lab-synthdir/xst/synth/design.scr.tmp
rm -f lab-synthdir/xst/synth/design.prj
touch lab-synthdir/xst/synth/design.prj
echo 'vhdl work "../../../snake.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../GPU/GPU.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../GMEM/GMEM.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../CPU/cpu.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../CPU/alu.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../CPU/asr.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../CPU/grx.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../CPU/ir.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../CPU/kr2.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../CPU/pm.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../CPU/pm.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../CPU/kr1.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../CPU/pc.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../CPU/upc.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../leddriver.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../SPI/spi.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../SPI/spimaster.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../UART/UART.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../Common/shiftregister.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../Common/register.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../Buss/buss.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../CPU/grx_types.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../Debugger/debugger.vhd"' >> lab-synthdir/xst/synth/design.prj; echo 'vhdl work "../../../Debugger/debugpak.vhd"' >> lab-synthdir/xst/synth/design.prj;
mv lab-synthdir/xst/synth/design.scr.tmp lab-synthdir/xst/synth/design.scr
*** Synthesizing ***
rm -rf lab-synthdir/xst/synth/tmpdir
mkdir -p lab-synthdir/xst/synth/tmpdir
rm -rf lab-synthdir/xst/synth/xst
mkdir -p lab-synthdir/xst/synth/xst
cd lab-synthdir/xst/synth; source /sw/xilinx/ise_14.2i/ISE_DS/settings64.sh; xst -ifn design.scr -ofn design.syr
Release 12.4 - xst M.81d (lin64)
Copyright (c) 1995-2010 Xilinx, Inc. All rights reserved.
-->
Parameter TMPDIR set to tmpdir
Total REAL time to Xst completion: 1.00 secs
Total CPU time to Xst completion: 0.07 secs
-->
TABLE OF CONTENTS
1) Synthesis Options Summary
2) HDL Parsing
3) HDL Elaboration
4) HDL Synthesis
4.1) HDL Synthesis Report
5) Advanced HDL Synthesis
5.1) Advanced HDL Synthesis Report
6) Low Level Synthesis
7) Partition Report
8) Design Summary
8.1) Primitive and Black Box Usage
8.2) Device utilization summary
8.3) Partition Resource Summary
8.4) Timing Report
8.4.1) Clock Information
8.4.2) Asynchronous Control Signals Information
8.4.3) Timing Summary
8.4.4) Timing Details
8.4.5) Cross Clock Domains Report
=========================================================================
* Synthesis Options Summary *
=========================================================================
---- Source Parameters
Input File Name : "design.prj"
---- Target Parameters
Output File Name : "design.ngc"
Target Device : xc6slx16-3-csg324
---- Source Options
Top Module Name : snake
=========================================================================
WARNING:Xst:29 - Optimization Effort not specified
The following parameters have been added:
Optimization Goal : SPEED
=========================================================================
=========================================================================
* HDL Parsing *
=========================================================================
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../CPU/grx_types.vhd" into library work
Parsing package <grx_types>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../Debugger/debugpak.vhd" into library work
Parsing package <debugpak>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../snake.vhd" into library work
Parsing entity <snake>.
Parsing architecture <behv> of entity <snake>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../GPU/GPU.vhd" into library work
Parsing entity <GPU>.
Parsing architecture <behv> of entity <gpu>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../GMEM/GMEM.vhd" into library work
Parsing entity <GMEM>.
Parsing architecture <GMbehv> of entity <gmem>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../CPU/cpu.vhd" into library work
Parsing entity <cpu>.
Parsing architecture <behav> of entity <cpu>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../CPU/alu.vhd" into library work
Parsing entity <alu>.
Parsing architecture <behav> of entity <alu>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../CPU/asr.vhd" into library work
Parsing entity <asr>.
Parsing architecture <behav> of entity <asr>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../CPU/grx.vhd" into library work
Parsing entity <grx>.
Parsing architecture <behav> of entity <grx>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../CPU/ir.vhd" into library work
Parsing entity <ir>.
Parsing architecture <behav> of entity <ir>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../CPU/kr2.vhd" into library work
Parsing entity <kr2>.
Parsing architecture <behav> of entity <kr2>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../CPU/pm.vhd" into library work
Parsing entity <pm>.
Parsing architecture <behav> of entity <pm>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../CPU/pm.vhd" into library work
Parsing entity <pm>.
Parsing architecture <behav> of entity <pm>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../CPU/kr1.vhd" into library work
Parsing entity <kr1>.
Parsing architecture <behav> of entity <kr1>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../CPU/pc.vhd" into library work
Parsing entity <pc>.
Parsing architecture <behav> of entity <pc>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../CPU/upc.vhd" into library work
Parsing entity <upc>.
Parsing architecture <behav> of entity <upc>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../leddriver.vhd" into library work
Parsing entity <leddriver>.
Parsing architecture <Behavioral> of entity <leddriver>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../SPI/spi.vhd" into library work
Parsing entity <spi>.
Parsing architecture <behav> of entity <spi>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../SPI/spimaster.vhd" into library work
Parsing entity <spimaster>.
Parsing architecture <behav> of entity <spimaster>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../UART/UART.vhd" into library work
Parsing entity <UART>.
Parsing architecture <behav> of entity <uart>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../Common/shiftregister.vhd" into library work
Parsing entity <shiftregi>.
Parsing architecture <behav> of entity <shiftregi>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../Common/register.vhd" into library work
Parsing entity <regi>.
Parsing architecture <behav> of entity <regi>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../Buss/buss.vhd" into library work
Parsing entity <buss>.
Parsing architecture <behav> of entity <buss>.
Parsing VHDL file "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../Debugger/debugger.vhd" into library work
Parsing entity <debugger>.
Parsing architecture <behav> of entity <debugger>.
=========================================================================
* HDL Elaboration *
=========================================================================
Elaborating entity <snake> (architecture <behv>) from library <work>.
WARNING:HDLCompiler:871 - "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../snake.vhd" Line 163: Using initial value "0000000000000000" for bspi since it is never assigned
WARNING:HDLCompiler:871 - "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../snake.vhd" Line 164: Using initial value "0000000000000000" for buart since it is never assigned
Elaborating entity <leddriver> (architecture <Behavioral>) from library <work>.
Elaborating entity <cpu> (architecture <behav>) from library <work>.
Elaborating entity <buss> (architecture <behav>) from library <work>.
Elaborating entity <grx> (architecture <behav>) from library <work>.
Elaborating entity <alu> (architecture <behav>) from library <work>.
Elaborating entity <pm> (architecture <behav>) from library <work>.
Elaborating entity <kr1> (architecture <behav>) from library <work>.
Elaborating entity <kr2> (architecture <behav>) from library <work>.
Elaborating entity <upc> (architecture <behav>) from library <work>.
Elaborating entity <ir> (architecture <behav>) from library <work>.
Elaborating entity <asr> (architecture <behav>) from library <work>.
Elaborating entity <pc> (architecture <behav>) from library <work>.
Elaborating entity <debugger> (architecture <behav>) from library <work>.
WARNING:HDLCompiler:92 - "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../Debugger/debugger.vhd" Line 28: indata should be on the sensitivity list of the process
WARNING:HDLCompiler:92 - "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../Debugger/debugger.vhd" Line 29: sw should be on the sensitivity list of the process
WARNING:HDLCompiler:92 - "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../Debugger/debugger.vhd" Line 33: indata should be on the sensitivity list of the process
WARNING:HDLCompiler:92 - "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../Debugger/debugger.vhd" Line 34: btn should be on the sensitivity list of the process
WARNING:HDLCompiler:92 - "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../Debugger/debugger.vhd" Line 37: watcher should be on the sensitivity list of the process
WARNING:HDLCompiler:92 - "/edu/tobhu543/TSEA83/projekt/lab-synthdir/xst/synth/../../../Debugger/debugger.vhd" Line 43: btn should be on the sensitivity list of the process
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[17][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[18][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[19][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[20][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[21][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[22][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[23][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[24][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[25][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[26][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[27][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[28][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[29][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[30][0]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][15]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][14]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][13]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][12]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][11]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][10]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][9]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][8]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][7]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][6]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][5]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][4]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][3]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][2]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][1]> does not have a driver.
WARNING:HDLCompiler:634 - "Unknown" Line 0: Net <debug_inst_indata[31][0]> does not have a driver.
=========================================================================
* HDL Synthesis *
=========================================================================
Synthesizing Unit <snake>.
Related source file is "/edu/tobhu543/TSEA83/projekt/snake.vhd".
WARNING:Xst:647 - Input <uart_in> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
INFO:Xst:3010 - "/edu/tobhu543/TSEA83/projekt/snake.vhd" line 248: Output port <outbuss> of the instance <cpu_inst> is unconnected or connected to loadless signal.
INFO:Xst:3010 - "/edu/tobhu543/TSEA83/projekt/snake.vhd" line 248: Output port <gr15> of the instance <cpu_inst> is unconnected or connected to loadless signal.
WARNING:Xst:653 - Signal <debug_inst_indata<17><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<17><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<18><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<19><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<20><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<21><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<22><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<23><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<24><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<25><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<26><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<27><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<28><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<29><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<30><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><15>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><14>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><13>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><12>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><11>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><9>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><8>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><7>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><6>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><5>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><3>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><2>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><1>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
WARNING:Xst:653 - Signal <debug_inst_indata<31><0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
Summary:
no macro.
Unit <snake> synthesized.
Synthesizing Unit <leddriver>.
Related source file is "/edu/tobhu543/TSEA83/projekt/leddriver.vhd".
WARNING:Xst:647 - Input <rst> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 7-bit register for signal <segments>.
Found 4-bit register for signal <an>.
Found 18-bit register for signal <counter_r>.
Found 18-bit adder for signal <counter_r[17]_GND_9_o_add_2_OUT> created at line 1241.
Found 16x7-bit Read Only RAM for signal <v[3]_GND_9_o_wide_mux_3_OUT>
Found 4x4-bit Read Only RAM for signal <counter_r[17]_PWR_9_o_wide_mux_4_OUT>
Found 1-bit 4-to-1 multiplexer for signal <v<3>> created at line 39.
Found 1-bit 4-to-1 multiplexer for signal <v<2>> created at line 39.
Found 1-bit 4-to-1 multiplexer for signal <v<1>> created at line 39.
Found 1-bit 4-to-1 multiplexer for signal <v<0>> created at line 39.
Summary:
inferred 2 RAM(s).
inferred 1 Adder/Subtractor(s).
inferred 29 D-type flip-flop(s).
inferred 4 Multiplexer(s).
Unit <leddriver> synthesized.
Synthesizing Unit <cpu>.
Related source file is "/edu/tobhu543/TSEA83/projekt/CPU/cpu.vhd".
WARNING:Xst:2935 - Signal 'dflags<1:0>', unconnected in block 'cpu', is tied to its initial value (00).
Summary:
no macro.
Unit <cpu> synthesized.
Synthesizing Unit <buss>.
Related source file is "/edu/tobhu543/TSEA83/projekt/Buss/buss.vhd".
Found 16-bit register for signal <bussbuss>.
Summary:
inferred 16 D-type flip-flop(s).
inferred 7 Multiplexer(s).
Unit <buss> synthesized.
Synthesizing Unit <grx>.
Related source file is "/edu/tobhu543/TSEA83/projekt/CPU/grx.vhd".
Found 16-bit register for signal <gr<1>>.
Found 16-bit register for signal <gr<2>>.
Found 16-bit register for signal <gr<3>>.
Found 16-bit register for signal <gr<4>>.
Found 16-bit register for signal <gr<5>>.
Found 16-bit register for signal <gr<6>>.
Found 16-bit register for signal <gr<7>>.
Found 16-bit register for signal <gr<8>>.
Found 16-bit register for signal <gr<9>>.
Found 16-bit register for signal <gr<10>>.
Found 16-bit register for signal <gr<11>>.
Found 16-bit register for signal <gr<12>>.
Found 16-bit register for signal <gr<13>>.
Found 16-bit register for signal <gr<14>>.
Found 16-bit register for signal <gr<15>>.
Found 16-bit register for signal <gr<0>>.
INFO:Xst:3019 - HDL ADVISOR - 256 flip-flops were inferred for signal <gr>. You may be trying to describe a RAM in a way that is incompatible with block and distributed RAM resources available on Xilinx devices, or with a specific template that is not supported. Please review the Xilinx resources documentation and the XST user manual for coding guidelines. Taking advantage of RAM resources will lead to improved device usage and reduced synthesis time.
INFO:Xst:3019 - HDL ADVISOR - 256 flip-flops were inferred for signal <gr>. You may be trying to describe a RAM in a way that is incompatible with block and distributed RAM resources available on Xilinx devices, or with a specific template that is not supported. Please review the Xilinx resources documentation and the XST user manual for coding guidelines. Taking advantage of RAM resources will lead to improved device usage and reduced synthesis time.
Found 16-bit 16-to-1 multiplexer for signal <at[3]_gr[15][15]_wide_mux_51_OUT> created at line 37.
Found 16-bit 16-to-1 multiplexer for signal <ind[3]_gr[15][15]_wide_mux_52_OUT> created at line 37.
Summary:
inferred 256 D-type flip-flop(s).
inferred 3 Multiplexer(s).
Unit <grx> synthesized.
Synthesizing Unit <alu>.
Related source file is "/edu/tobhu543/TSEA83/projekt/CPU/alu.vhd".
WARNING:Xst:647 - Input <flags<2>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <flags<1>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <flags<0>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 4-bit register for signal <flags_vippor>.
Found 1-bit register for signal <random_tmp>.
Found 32-bit register for signal <random_reg>.
Found 16-bit register for signal <ar>.
Found 16-bit adder for signal <ar[15]_signed_buss[15]_add_28_OUT> created at line 69.
Found 17-bit adder for signal <PWR_14_o_PWR_14_o_add_78_OUT> created at line 83.
Found 17-bit adder for signal <GND_13_o_PWR_14_o_add_80_OUT> created at line 82.
Found 17-bit adder for signal <PWR_14_o_GND_13_o_add_82_OUT> created at line 81.
Found 17-bit adder for signal <GND_13_o_GND_13_o_add_84_OUT> created at line 80.
Found 16-bit subtractor for signal <ar[15]_signed_buss[15]_sub_35_OUT<15:0>> created at line 66.
Found 16-bit subtractor for signal <PWR_14_o_signed_buss[15]_sub_40_OUT<15:0>> created at line 1326.
Found 17-bit subtractor for signal <PWR_14_o_PWR_14_o_sub_71_OUT<16:0>> created at line 87.
Found 17-bit subtractor for signal <GND_13_o_PWR_14_o_sub_73_OUT<16:0>> created at line 86.
Found 17-bit subtractor for signal <PWR_14_o_GND_13_o_sub_75_OUT<16:0>> created at line 85.
Found 17-bit subtractor for signal <GND_13_o_GND_13_o_sub_77_OUT<16:0>> created at line 84.
Found 16-bit comparator greater for signal <n0055> created at line 85
Found 16-bit comparator greater for signal <n0058> created at line 86
Summary:
inferred 4 Adder/Subtractor(s).
inferred 53 D-type flip-flop(s).
inferred 2 Comparator(s).
inferred 36 Multiplexer(s).
Unit <alu> synthesized.
Synthesizing Unit <pm>.
Related source file is "/edu/tobhu543/TSEA83/projekt/CPU/pm.vhd".
Found 4096x16-bit single-port RAM <Mram_pmem> for signal <pmem>.
Found 16-bit register for signal <out_tmp>.
Summary:
inferred 1 RAM(s).
inferred 16 D-type flip-flop(s).
Unit <pm> synthesized.
Synthesizing Unit <kr1>.
Related source file is "/edu/tobhu543/TSEA83/projekt/CPU/kr1.vhd".
Found 64x8-bit Read Only RAM for signal <output>
Summary:
inferred 1 RAM(s).
Unit <kr1> synthesized.
Synthesizing Unit <kr2>.
Related source file is "/edu/tobhu543/TSEA83/projekt/CPU/kr2.vhd".
Found 4x8-bit Read Only RAM for signal <output>
Summary:
inferred 1 RAM(s).
Unit <kr2> synthesized.
Synthesizing Unit <upc>.
Related source file is "/edu/tobhu543/TSEA83/projekt/CPU/upc.vhd".
Found 1-bit register for signal <oldHaltUpc>.
Found 1-bit register for signal <lastBtnState>.
Found 4-bit register for signal <tobus_tmp>.
Found 4-bit register for signal <alu_tmp>.
Found 1-bit register for signal <p_tmp>.
Found 4-bit register for signal <frombus_tmp>.
Found 1-bit register for signal <i_state>.
Found 1-bit register for signal <flags<2>>.
Found 16-bit register for signal <lc>.
Found 8-bit register for signal <upc>.
Found 1-bit register for signal <halting>.
Found 8-bit adder for signal <upc[7]_upc[7]_mux_65_OUT> created at line 300.
Found 16-bit subtractor for signal <GND_17_o_GND_17_o_sub_10_OUT<15:0>> created at line 243.
Found 256x27-bit Read Only RAM for signal <n0112>
Found 16-bit comparator lessequal for signal <n0097> created at line 317
Summary:
inferred 1 RAM(s).
inferred 2 Adder/Subtractor(s).
inferred 42 D-type flip-flop(s).
inferred 1 Comparator(s).
inferred 24 Multiplexer(s).
Unit <upc> synthesized.
Synthesizing Unit <ir>.
Related source file is "/edu/tobhu543/TSEA83/projekt/CPU/ir.vhd".
Found 16-bit register for signal <val>.
Summary:
inferred 16 D-type flip-flop(s).
inferred 1 Multiplexer(s).
Unit <ir> synthesized.
Synthesizing Unit <asr>.
Related source file is "/edu/tobhu543/TSEA83/projekt/CPU/asr.vhd".
Found 12-bit register for signal <val>.
Summary:
inferred 12 D-type flip-flop(s).
Unit <asr> synthesized.
Synthesizing Unit <pc>.
Related source file is "/edu/tobhu543/TSEA83/projekt/CPU/pc.vhd".
WARNING:Xst:647 - Input <buss<15:12>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 12-bit register for signal <val>.
Found 12-bit adder for signal <val[11]_GND_20_o_add_0_OUT> created at line 23.
Summary:
inferred 1 Adder/Subtractor(s).
inferred 12 D-type flip-flop(s).
inferred 1 Multiplexer(s).
Unit <pc> synthesized.
Synthesizing Unit <debugger>.
Related source file is "/edu/tobhu543/TSEA83/projekt/Debugger/debugger.vhd".
WARNING:Xst:647 - Input <sw<7:6>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <clk> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 16-bit 21-to-1 multiplexer for signal <outgoing> created at line 28.
Found 16-bit comparator not equal for signal <n0004> created at line 37
Summary:
inferred 1 Comparator(s).
inferred 2 Multiplexer(s).
Unit <debugger> synthesized.
RTL-Simplification CPUSTAT: 0.07
RTL-BasicInf CPUSTAT: 0.19
RTL-BasicOpt CPUSTAT: 0.01
RTL-Remain-Bus CPUSTAT: 0.02
=========================================================================
HDL Synthesis Report
Macro Statistics
# RAMs : 6
16x7-bit single-port Read Only RAM : 1
256x27-bit single-port Read Only RAM : 1
4096x16-bit single-port RAM : 1
4x4-bit single-port Read Only RAM : 1
4x8-bit single-port Read Only RAM : 1
64x8-bit single-port Read Only RAM : 1
# Adders/Subtractors : 8
12-bit adder : 1
16-bit adder : 1
16-bit subtractor : 3
17-bit addsub : 1
18-bit adder : 1
8-bit adder : 1
# Registers : 39
1-bit register : 7
12-bit register : 2
16-bit register : 21
18-bit register : 1
32-bit register : 1
4-bit register : 5
7-bit register : 1
8-bit register : 1
# Comparators : 4
16-bit comparator greater : 2
16-bit comparator lessequal : 1
16-bit comparator not equal : 1
# Multiplexers : 78
1-bit 2-to-1 multiplexer : 9
1-bit 4-to-1 multiplexer : 4
12-bit 2-to-1 multiplexer : 1
16-bit 16-to-1 multiplexer : 2
16-bit 2-to-1 multiplexer : 25
16-bit 21-to-1 multiplexer : 1
17-bit 2-to-1 multiplexer : 18
32-bit 2-to-1 multiplexer : 1
8-bit 2-to-1 multiplexer : 17
# Xors : 3
1-bit xor2 : 1
4-bit xor2 : 2
=========================================================================
INFO:Xst:1767 - HDL ADVISOR - Resource sharing has identified that some arithmetic operations in this design can share the same physical resources for reduced device utilization. For improved clock frequency you may try to disable resource sharing.
=========================================================================
* Advanced HDL Synthesis *
=========================================================================
Synthesizing (advanced) Unit <kr1>.
INFO:Xst:3031 - HDL ADVISOR - The RAM <Mram_output> will be implemented on LUTs either because you have described an asynchronous read or because of currently unsupported block RAM features. If you have described an asynchronous read, making it synchronous would allow you to take advantage of available block RAM resources, for optimized device usage and improved timings. Please refer to your documentation for coding guidelines.
-----------------------------------------------------------------------
| ram_type | Distributed | |
-----------------------------------------------------------------------
| Port A |
| aspect ratio | 64-word x 8-bit | |
| weA | connected to signal <GND> | high |
| addrA | connected to signal <index> | |
| diA | connected to signal <GND> | |
| doA | connected to signal <output> | |
-----------------------------------------------------------------------
Unit <kr1> synthesized (advanced).
Synthesizing (advanced) Unit <kr2>.
INFO:Xst:3031 - HDL ADVISOR - The RAM <Mram_output> will be implemented on LUTs either because you have described an asynchronous read or because of currently unsupported block RAM features. If you have described an asynchronous read, making it synchronous would allow you to take advantage of available block RAM resources, for optimized device usage and improved timings. Please refer to your documentation for coding guidelines.
-----------------------------------------------------------------------
| ram_type | Distributed | |
-----------------------------------------------------------------------
| Port A |
| aspect ratio | 4-word x 8-bit | |
| weA | connected to signal <GND> | high |
| addrA | connected to signal <index> | |
| diA | connected to signal <GND> | |
| doA | connected to signal <output> | |
-----------------------------------------------------------------------
Unit <kr2> synthesized (advanced).
Synthesizing (advanced) Unit <leddriver>.
The following registers are absorbed into counter <counter_r>: 1 register on signal <counter_r>.
INFO:Xst:3048 - The small RAM <Mram_v[3]_GND_9_o_wide_mux_3_OUT> will be implemented on LUTs in order to maximize performance and save block RAM resources. If you want to force its implementation on block, use option/constraint ram_style.
-----------------------------------------------------------------------
| ram_type | Distributed | |
-----------------------------------------------------------------------
| Port A |
| aspect ratio | 16-word x 7-bit | |
| weA | connected to signal <GND> | high |
| addrA | connected to signal <v> | |
| diA | connected to signal <GND> | |
| doA | connected to internal node | |
-----------------------------------------------------------------------
INFO:Xst:3048 - The small RAM <Mram_counter_r[17]_PWR_9_o_wide_mux_4_OUT> will be implemented on LUTs in order to maximize performance and save block RAM resources. If you want to force its implementation on block, use option/constraint ram_style.
-----------------------------------------------------------------------
| ram_type | Distributed | |
-----------------------------------------------------------------------
| Port A |
| aspect ratio | 4-word x 4-bit | |
| weA | connected to signal <GND> | high |
| addrA | connected to signal <counter_r> | |
| diA | connected to signal <GND> | |
| doA | connected to internal node | |
-----------------------------------------------------------------------
Unit <leddriver> synthesized (advanced).
Synthesizing (advanced) Unit <pc>.
The following registers are absorbed into counter <val>: 1 register on signal <val>.
Unit <pc> synthesized (advanced).
Synthesizing (advanced) Unit <pm>.
INFO:Xst:3040 - The RAM <Mram_pmem> will be implemented as a BLOCK RAM, absorbing the following register(s): <out_tmp>
-----------------------------------------------------------------------
| ram_type | Block | |
-----------------------------------------------------------------------
| Port A |
| aspect ratio | 4096-word x 16-bit | |
| mode | read-first | |
| clkA | connected to signal <clk> | rise |
| weA | connected to internal node | high |
| addrA | connected to signal <adr> | |
| diA | connected to signal <buss> | |
| doA | connected to signal <out_tmp> | |
-----------------------------------------------------------------------
| optimization | speed | |
-----------------------------------------------------------------------
Unit <pm> synthesized (advanced).
Synthesizing (advanced) Unit <upc>.
The following registers are absorbed into counter <lc>: 1 register on signal <lc>.