๐Ÿ“ฆ furkan / fakequidditch

๐Ÿ“„ fakequidditch.map.rpt ยท 1644 lines
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644Analysis & Synthesis report for fakequidditch
Wed May 29 14:47:53 2019
Quartus II 64-Bit Version 13.1.0 Build 162 10/23/2013 SJ Web Edition


---------------------
; Table of Contents ;
---------------------
  1. Legal Notice
  2. Analysis & Synthesis Summary
  3. Analysis & Synthesis Settings
  4. Parallel Compilation
  5. Analysis & Synthesis Source Files Read
  6. Analysis & Synthesis Resource Usage Summary
  7. Analysis & Synthesis Resource Utilization by Entity
  8. Analysis & Synthesis DSP Block Usage Summary
  9. State Machine - |fakequidditch|game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_state
 10. State Machine - |fakequidditch|game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_state
 11. State Machine - |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y
 12. State Machine - |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x
 13. State Machine - |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|state
 14. State Machine - |fakequidditch|game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state
 15. State Machine - |fakequidditch|game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state
 16. Registers Removed During Synthesis
 17. General Register Statistics
 18. Inverted Register Statistics
 19. Multiplexer Restructuring Statistics (Restructuring Performed)
 20. Parameter Settings for User Entity Instance: game_controller:game_ctrl
 21. Parameter Settings for User Entity Instance: game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl
 22. Parameter Settings for User Entity Instance: game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl
 23. Parameter Settings for User Entity Instance: game_controller:game_ctrl|ball_controller_cansu:ball_ctrl
 24. Parameter Settings for User Entity Instance: game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl
 25. Parameter Settings for User Entity Instance: game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl
 26. Parameter Settings for User Entity Instance: vga_controller:vga_cont
 27. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_divide:Div0
 28. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_divide:Mod0
 29. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_divide:Mod1
 30. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_divide:Div1
 31. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult6_rtl_0
 32. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult7_rtl_1
 33. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult11_rtl_2
 34. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult15_rtl_3
 35. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult2_rtl_4
 36. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult3_rtl_5
 37. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult5_rtl_6
 38. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult4_rtl_7
 39. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult0_rtl_8
 40. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult1_rtl_9
 41. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult38_rtl_10
 42. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult22_rtl_11
 43. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult23_rtl_12
 44. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult25_rtl_13
 45. Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult24_rtl_14
 46. lpm_mult Parameter Settings by Entity Instance
 47. Port Connectivity Checks: "game_controller:game_ctrl|ball_controller_cansu:ball_ctrl"
 48. Port Connectivity Checks: "game_controller:game_ctrl"
 49. Elapsed Time Per Partition
 50. Analysis & Synthesis Messages
 51. Analysis & Synthesis Suppressed Messages



----------------
; Legal Notice ;
----------------
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.



+------------------------------------------------------------------------------+
; Analysis & Synthesis Summary                                                 ;
+---------------------------------+--------------------------------------------+
; Analysis & Synthesis Status     ; Successful - Wed May 29 14:47:53 2019      ;
; Quartus II 64-Bit Version       ; 13.1.0 Build 162 10/23/2013 SJ Web Edition ;
; Revision Name                   ; fakequidditch                              ;
; Top-level Entity Name           ; fakequidditch                              ;
; Family                          ; Cyclone V                                  ;
; Logic utilization (in ALMs)     ; N/A                                        ;
; Total registers                 ; 482                                        ;
; Total pins                      ; 36                                         ;
; Total virtual pins              ; 0                                          ;
; Total block memory bits         ; 0                                          ;
; Total DSP Blocks                ; 96                                         ;
; Total HSSI RX PCSs              ; 0                                          ;
; Total HSSI PMA RX Deserializers ; 0                                          ;
; Total HSSI TX PCSs              ; 0                                          ;
; Total HSSI TX Channels          ; 0                                          ;
; Total PLLs                      ; 0                                          ;
; Total DLLs                      ; 0                                          ;
+---------------------------------+--------------------------------------------+


+---------------------------------------------------------------------------------------------------------------------------+
; Analysis & Synthesis Settings                                                                                             ;
+---------------------------------------------------------------------------------+--------------------+--------------------+
; Option                                                                          ; Setting            ; Default Value      ;
+---------------------------------------------------------------------------------+--------------------+--------------------+
; Device                                                                          ; 5CSEMA5F31C6       ;                    ;
; Top-level entity name                                                           ; fakequidditch      ; fakequidditch      ;
; Family name                                                                     ; Cyclone V          ; Cyclone IV GX      ;
; Use smart compilation                                                           ; Off                ; Off                ;
; Enable parallel Assembler and TimeQuest Timing Analyzer during compilation      ; On                 ; On                 ;
; Enable compact report table                                                     ; Off                ; Off                ;
; Restructure Multiplexers                                                        ; Auto               ; Auto               ;
; MLAB Add Timing Constraints For Mixed-Port Feed-Through Mode Setting Don't Care ; Off                ; Off                ;
; Create Debugging Nodes for IP Cores                                             ; Off                ; Off                ;
; Preserve fewer node names                                                       ; On                 ; On                 ;
; Disable OpenCore Plus hardware evaluation                                       ; Off                ; Off                ;
; Verilog Version                                                                 ; Verilog_2001       ; Verilog_2001       ;
; VHDL Version                                                                    ; VHDL_1993          ; VHDL_1993          ;
; State Machine Processing                                                        ; Auto               ; Auto               ;
; Safe State Machine                                                              ; Off                ; Off                ;
; Extract Verilog State Machines                                                  ; On                 ; On                 ;
; Extract VHDL State Machines                                                     ; On                 ; On                 ;
; Ignore Verilog initial constructs                                               ; Off                ; Off                ;
; Iteration limit for constant Verilog loops                                      ; 5000               ; 5000               ;
; Iteration limit for non-constant Verilog loops                                  ; 250                ; 250                ;
; Add Pass-Through Logic to Inferred RAMs                                         ; On                 ; On                 ;
; Infer RAMs from Raw Logic                                                       ; On                 ; On                 ;
; Parallel Synthesis                                                              ; On                 ; On                 ;
; DSP Block Balancing                                                             ; Auto               ; Auto               ;
; NOT Gate Push-Back                                                              ; On                 ; On                 ;
; Power-Up Don't Care                                                             ; On                 ; On                 ;
; Remove Redundant Logic Cells                                                    ; Off                ; Off                ;
; Remove Duplicate Registers                                                      ; On                 ; On                 ;
; Ignore CARRY Buffers                                                            ; Off                ; Off                ;
; Ignore CASCADE Buffers                                                          ; Off                ; Off                ;
; Ignore GLOBAL Buffers                                                           ; Off                ; Off                ;
; Ignore ROW GLOBAL Buffers                                                       ; Off                ; Off                ;
; Ignore LCELL Buffers                                                            ; Off                ; Off                ;
; Ignore SOFT Buffers                                                             ; On                 ; On                 ;
; Limit AHDL Integers to 32 Bits                                                  ; Off                ; Off                ;
; Optimization Technique                                                          ; Balanced           ; Balanced           ;
; Carry Chain Length                                                              ; 70                 ; 70                 ;
; Auto Carry Chains                                                               ; On                 ; On                 ;
; Auto Open-Drain Pins                                                            ; On                 ; On                 ;
; Perform WYSIWYG Primitive Resynthesis                                           ; Off                ; Off                ;
; Auto ROM Replacement                                                            ; On                 ; On                 ;
; Auto RAM Replacement                                                            ; On                 ; On                 ;
; Auto DSP Block Replacement                                                      ; On                 ; On                 ;
; Auto Shift Register Replacement                                                 ; Auto               ; Auto               ;
; Allow Shift Register Merging across Hierarchies                                 ; Auto               ; Auto               ;
; Auto Clock Enable Replacement                                                   ; On                 ; On                 ;
; Strict RAM Replacement                                                          ; Off                ; Off                ;
; Allow Synchronous Control Signals                                               ; On                 ; On                 ;
; Force Use of Synchronous Clear Signals                                          ; Off                ; Off                ;
; Auto Resource Sharing                                                           ; Off                ; Off                ;
; Allow Any RAM Size For Recognition                                              ; Off                ; Off                ;
; Allow Any ROM Size For Recognition                                              ; Off                ; Off                ;
; Allow Any Shift Register Size For Recognition                                   ; Off                ; Off                ;
; Use LogicLock Constraints during Resource Balancing                             ; On                 ; On                 ;
; Ignore translate_off and synthesis_off directives                               ; Off                ; Off                ;
; Timing-Driven Synthesis                                                         ; On                 ; On                 ;
; Report Parameter Settings                                                       ; On                 ; On                 ;
; Report Source Assignments                                                       ; On                 ; On                 ;
; Report Connectivity Checks                                                      ; On                 ; On                 ;
; Ignore Maximum Fan-Out Assignments                                              ; Off                ; Off                ;
; Synchronization Register Chain Length                                           ; 3                  ; 3                  ;
; PowerPlay Power Optimization                                                    ; Normal compilation ; Normal compilation ;
; HDL message level                                                               ; Level2             ; Level2             ;
; Suppress Register Optimization Related Messages                                 ; Off                ; Off                ;
; Number of Removed Registers Reported in Synthesis Report                        ; 5000               ; 5000               ;
; Number of Swept Nodes Reported in Synthesis Report                              ; 5000               ; 5000               ;
; Number of Inverted Registers Reported in Synthesis Report                       ; 100                ; 100                ;
; Clock MUX Protection                                                            ; On                 ; On                 ;
; Auto Gated Clock Conversion                                                     ; Off                ; Off                ;
; Block Design Naming                                                             ; Auto               ; Auto               ;
; SDC constraint protection                                                       ; Off                ; Off                ;
; Synthesis Effort                                                                ; Auto               ; Auto               ;
; Shift Register Replacement - Allow Asynchronous Clear Signal                    ; On                 ; On                 ;
; Pre-Mapping Resynthesis Optimization                                            ; Off                ; Off                ;
; Analysis & Synthesis Message Level                                              ; Medium             ; Medium             ;
; Disable Register Merging Across Hierarchies                                     ; Auto               ; Auto               ;
; Resource Aware Inference For Block RAM                                          ; On                 ; On                 ;
; Synthesis Seed                                                                  ; 1                  ; 1                  ;
; Automatic Parallel Synthesis                                                    ; On                 ; On                 ;
+---------------------------------------------------------------------------------+--------------------+--------------------+


+------------------------------------------+
; Parallel Compilation                     ;
+----------------------------+-------------+
; Processors                 ; Number      ;
+----------------------------+-------------+
; Number detected on machine ; 4           ;
; Maximum allowed            ; 2           ;
;                            ;             ;
; Average used               ; 1.00        ;
; Maximum used               ; 2           ;
;                            ;             ;
; Usage by Processor         ; % Time Used ;
;     Processor 1            ; 100.0%      ;
;     Processor 2            ; < 0.1%      ;
;     Processors 3-4         ;   0.0%      ;
+----------------------------+-------------+


+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Analysis & Synthesis Source Files Read                                                                                                                                            ;
+-----------------------------------------+-----------------+------------------------------+------------------------------------------------------------------------------+---------+
; File Name with User-Entered Path        ; Used in Netlist ; File Type                    ; File Name with Absolute Path                                                 ; Library ;
+-----------------------------------------+-----------------+------------------------------+------------------------------------------------------------------------------+---------+
; fakequidditch.v                         ; yes             ; User Verilog HDL File        ; C:/Users/Cansu/Desktop/fakequidditch/fakequidditch.v                         ;         ;
; vga_controller/vga_controller.v         ; yes             ; User Verilog HDL File        ; C:/Users/Cansu/Desktop/fakequidditch/vga_controller/vga_controller.v         ;         ;
; game_controller/game_controller.v       ; yes             ; User Verilog HDL File        ; C:/Users/Cansu/Desktop/fakequidditch/game_controller/game_controller.v       ;         ;
; game_controller/ver_player_controller.v ; yes             ; User Verilog HDL File        ; C:/Users/Cansu/Desktop/fakequidditch/game_controller/ver_player_controller.v ;         ;
; game_controller/ball_controller_cansu.v ; yes             ; User Verilog HDL File        ; C:/Users/Cansu/Desktop/fakequidditch/game_controller/ball_controller_cansu.v ;         ;
; game_controller/hor_player_controller.v ; yes             ; User Verilog HDL File        ; C:/Users/Cansu/Desktop/fakequidditch/game_controller/hor_player_controller.v ;         ;
; lpm_divide.tdf                          ; yes             ; Megafunction                 ; c:/altera/13.1/quartus/libraries/megafunctions/lpm_divide.tdf                ;         ;
; abs_divider.inc                         ; yes             ; Megafunction                 ; c:/altera/13.1/quartus/libraries/megafunctions/abs_divider.inc               ;         ;
; sign_div_unsign.inc                     ; yes             ; Megafunction                 ; c:/altera/13.1/quartus/libraries/megafunctions/sign_div_unsign.inc           ;         ;
; aglobal131.inc                          ; yes             ; Megafunction                 ; c:/altera/13.1/quartus/libraries/megafunctions/aglobal131.inc                ;         ;
; db/lpm_divide_7am.tdf                   ; yes             ; Auto-Generated Megafunction  ; C:/Users/Cansu/Desktop/fakequidditch/db/lpm_divide_7am.tdf                   ;         ;
; db/sign_div_unsign_dkh.tdf              ; yes             ; Auto-Generated Megafunction  ; C:/Users/Cansu/Desktop/fakequidditch/db/sign_div_unsign_dkh.tdf              ;         ;
; db/alt_u_div_0te.tdf                    ; yes             ; Auto-Generated Megafunction  ; C:/Users/Cansu/Desktop/fakequidditch/db/alt_u_div_0te.tdf                    ;         ;
; db/lpm_divide_a2m.tdf                   ; yes             ; Auto-Generated Megafunction  ; C:/Users/Cansu/Desktop/fakequidditch/db/lpm_divide_a2m.tdf                   ;         ;
; db/lpm_divide_62m.tdf                   ; yes             ; Auto-Generated Megafunction  ; C:/Users/Cansu/Desktop/fakequidditch/db/lpm_divide_62m.tdf                   ;         ;
; db/sign_div_unsign_9kh.tdf              ; yes             ; Auto-Generated Megafunction  ; C:/Users/Cansu/Desktop/fakequidditch/db/sign_div_unsign_9kh.tdf              ;         ;
; db/alt_u_div_ose.tdf                    ; yes             ; Auto-Generated Megafunction  ; C:/Users/Cansu/Desktop/fakequidditch/db/alt_u_div_ose.tdf                    ;         ;
; db/lpm_divide_3am.tdf                   ; yes             ; Auto-Generated Megafunction  ; C:/Users/Cansu/Desktop/fakequidditch/db/lpm_divide_3am.tdf                   ;         ;
; lpm_mult.tdf                            ; yes             ; Megafunction                 ; c:/altera/13.1/quartus/libraries/megafunctions/lpm_mult.tdf                  ;         ;
; lpm_add_sub.inc                         ; yes             ; Megafunction                 ; c:/altera/13.1/quartus/libraries/megafunctions/lpm_add_sub.inc               ;         ;
; multcore.inc                            ; yes             ; Megafunction                 ; c:/altera/13.1/quartus/libraries/megafunctions/multcore.inc                  ;         ;
; bypassff.inc                            ; yes             ; Megafunction                 ; c:/altera/13.1/quartus/libraries/megafunctions/bypassff.inc                  ;         ;
; altshift.inc                            ; yes             ; Megafunction                 ; c:/altera/13.1/quartus/libraries/megafunctions/altshift.inc                  ;         ;
; db/mult_ol01.v                          ; yes             ; Auto-Generated Megafunction  ; C:/Users/Cansu/Desktop/fakequidditch/db/mult_ol01.v                          ;         ;
; db/mult_2l01.v                          ; yes             ; Auto-Generated Megafunction  ; C:/Users/Cansu/Desktop/fakequidditch/db/mult_2l01.v                          ;         ;
+-----------------------------------------+-----------------+------------------------------+------------------------------------------------------------------------------+---------+


+---------------------------------------------------------+
; Analysis & Synthesis Resource Usage Summary             ;
+---------------------------------------------+-----------+
; Resource                                    ; Usage     ;
+---------------------------------------------+-----------+
; Estimate of Logic utilization (ALMs needed) ; 3367      ;
;                                             ;           ;
; Combinational ALUT usage for logic          ; 6538      ;
;     -- 7 input functions                    ; 2         ;
;     -- 6 input functions                    ; 191       ;
;     -- 5 input functions                    ; 369       ;
;     -- 4 input functions                    ; 674       ;
;     -- <=3 input functions                  ; 5302      ;
;                                             ;           ;
; Dedicated logic registers                   ; 482       ;
;                                             ;           ;
; I/O pins                                    ; 36        ;
; Total DSP Blocks                            ; 96        ;
; Maximum fan-out node                        ; clk~input ;
; Maximum fan-out                             ; 482       ;
; Total fan-out                               ; 25547     ;
; Average fan-out                             ; 3.55      ;
+---------------------------------------------+-----------+


+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Analysis & Synthesis Resource Utilization by Entity                                                                                                                                                                                                                                            ;
+----------------------------------------------+-------------------+--------------+-------------------+------------+------+--------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------+
; Compilation Hierarchy Node                   ; LC Combinationals ; LC Registers ; Block Memory Bits ; DSP Blocks ; Pins ; Virtual Pins ; Full Hierarchy Name                                                                                                                    ; Library Name ;
+----------------------------------------------+-------------------+--------------+-------------------+------------+------+--------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------+
; |fakequidditch                               ; 6538 (39)         ; 482 (33)     ; 0                 ; 96         ; 36   ; 0            ; |fakequidditch                                                                                                                         ; work         ;
;    |game_controller:game_ctrl|               ; 963 (56)          ; 404 (40)     ; 0                 ; 24         ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl                                                                                               ; work         ;
;       |ball_controller_cansu:ball_ctrl|      ; 465 (465)         ; 56 (56)      ; 0                 ; 24         ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl                                                               ; work         ;
;       |hor_player_controller:team1_hor_ctrl| ; 111 (111)         ; 77 (77)      ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl                                                          ; work         ;
;       |hor_player_controller:team2_hor_ctrl| ; 111 (111)         ; 77 (77)      ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl                                                          ; work         ;
;       |ver_player_controller:team1_ver_ctrl| ; 110 (110)         ; 77 (77)      ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl                                                          ; work         ;
;       |ver_player_controller:team2_ver_ctrl| ; 110 (110)         ; 77 (77)      ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl                                                          ; work         ;
;    |vga_controller:vga_cont|                 ; 5536 (1987)       ; 45 (45)      ; 0                 ; 72         ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont                                                                                                 ; work         ;
;       |lpm_divide:Div0|                      ; 38 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div0                                                                                 ; work         ;
;          |lpm_divide_7am:auto_generated|     ; 38 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div0|lpm_divide_7am:auto_generated                                                   ; work         ;
;             |sign_div_unsign_dkh:divider|    ; 38 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div0|lpm_divide_7am:auto_generated|sign_div_unsign_dkh:divider                       ; work         ;
;                |alt_u_div_0te:divider|       ; 38 (38)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div0|lpm_divide_7am:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider ; work         ;
;       |lpm_divide:Div1|                      ; 25 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div1                                                                                 ; work         ;
;          |lpm_divide_3am:auto_generated|     ; 25 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div1|lpm_divide_3am:auto_generated                                                   ; work         ;
;             |sign_div_unsign_9kh:divider|    ; 25 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div1|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider                       ; work         ;
;                |alt_u_div_ose:divider|       ; 25 (25)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Div1|lpm_divide_3am:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider ; work         ;
;       |lpm_divide:Mod0|                      ; 55 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod0                                                                                 ; work         ;
;          |lpm_divide_a2m:auto_generated|     ; 55 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated                                                   ; work         ;
;             |sign_div_unsign_dkh:divider|    ; 55 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider                       ; work         ;
;                |alt_u_div_0te:divider|       ; 55 (55)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod0|lpm_divide_a2m:auto_generated|sign_div_unsign_dkh:divider|alt_u_div_0te:divider ; work         ;
;       |lpm_divide:Mod1|                      ; 29 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod1                                                                                 ; work         ;
;          |lpm_divide_62m:auto_generated|     ; 29 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated                                                   ; work         ;
;             |sign_div_unsign_9kh:divider|    ; 29 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider                       ; work         ;
;                |alt_u_div_ose:divider|       ; 29 (29)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_divide:Mod1|lpm_divide_62m:auto_generated|sign_div_unsign_9kh:divider|alt_u_div_ose:divider ; work         ;
;       |lpm_mult:Mult0_rtl_8|                 ; 88 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult0_rtl_8                                                                            ; work         ;
;          |mult_2l01:auto_generated|          ; 88 (88)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult0_rtl_8|mult_2l01:auto_generated                                                   ; work         ;
;       |lpm_mult:Mult11_rtl_2|                ; 253 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult11_rtl_2                                                                           ; work         ;
;          |mult_ol01:auto_generated|          ; 253 (253)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult11_rtl_2|mult_ol01:auto_generated                                                  ; work         ;
;       |lpm_mult:Mult15_rtl_3|                ; 248 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult15_rtl_3                                                                           ; work         ;
;          |mult_ol01:auto_generated|          ; 248 (248)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult15_rtl_3|mult_ol01:auto_generated                                                  ; work         ;
;       |lpm_mult:Mult1_rtl_9|                 ; 87 (0)            ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult1_rtl_9                                                                            ; work         ;
;          |mult_2l01:auto_generated|          ; 87 (87)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult1_rtl_9|mult_2l01:auto_generated                                                   ; work         ;
;       |lpm_mult:Mult22_rtl_11|               ; 248 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult22_rtl_11                                                                          ; work         ;
;          |mult_ol01:auto_generated|          ; 248 (248)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult22_rtl_11|mult_ol01:auto_generated                                                 ; work         ;
;       |lpm_mult:Mult23_rtl_12|               ; 247 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult23_rtl_12                                                                          ; work         ;
;          |mult_ol01:auto_generated|          ; 247 (247)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult23_rtl_12|mult_ol01:auto_generated                                                 ; work         ;
;       |lpm_mult:Mult24_rtl_14|               ; 248 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult24_rtl_14                                                                          ; work         ;
;          |mult_ol01:auto_generated|          ; 248 (248)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult24_rtl_14|mult_ol01:auto_generated                                                 ; work         ;
;       |lpm_mult:Mult25_rtl_13|               ; 248 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult25_rtl_13                                                                          ; work         ;
;          |mult_ol01:auto_generated|          ; 248 (248)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult25_rtl_13|mult_ol01:auto_generated                                                 ; work         ;
;       |lpm_mult:Mult2_rtl_4|                 ; 248 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult2_rtl_4                                                                            ; work         ;
;          |mult_ol01:auto_generated|          ; 248 (248)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated                                                   ; work         ;
;       |lpm_mult:Mult38_rtl_10|               ; 248 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult38_rtl_10                                                                          ; work         ;
;          |mult_ol01:auto_generated|          ; 248 (248)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult38_rtl_10|mult_ol01:auto_generated                                                 ; work         ;
;       |lpm_mult:Mult3_rtl_5|                 ; 247 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult3_rtl_5                                                                            ; work         ;
;          |mult_ol01:auto_generated|          ; 247 (247)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated                                                   ; work         ;
;       |lpm_mult:Mult4_rtl_7|                 ; 248 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult4_rtl_7                                                                            ; work         ;
;          |mult_ol01:auto_generated|          ; 248 (248)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult4_rtl_7|mult_ol01:auto_generated                                                   ; work         ;
;       |lpm_mult:Mult5_rtl_6|                 ; 248 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult5_rtl_6                                                                            ; work         ;
;          |mult_ol01:auto_generated|          ; 248 (248)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult5_rtl_6|mult_ol01:auto_generated                                                   ; work         ;
;       |lpm_mult:Mult6_rtl_0|                 ; 248 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult6_rtl_0                                                                            ; work         ;
;          |mult_ol01:auto_generated|          ; 248 (248)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult6_rtl_0|mult_ol01:auto_generated                                                   ; work         ;
;       |lpm_mult:Mult7_rtl_1|                 ; 248 (0)           ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult7_rtl_1                                                                            ; work         ;
;          |mult_ol01:auto_generated|          ; 248 (248)         ; 0 (0)        ; 0                 ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult7_rtl_1|mult_ol01:auto_generated                                                   ; work         ;
+----------------------------------------------+-------------------+--------------+-------------------+------------+------+--------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------+
Note: For table entries with two numbers listed, the numbers in parentheses indicate the number of resources of the given type used by the specific entity alone. The numbers listed outside of parentheses indicate the total resources of the given type used by the specific entity and all of its sub-entities in the hierarchy.


+-----------------------------------------------------------------------------+
; Analysis & Synthesis DSP Block Usage Summary                                ;
+---------------------+-------------+---------------------+-------------------+
; Statistic           ; Number Used ; Available per Block ; Maximum Available ;
+---------------------+-------------+---------------------+-------------------+
; Independent 18x18   ; 18          ; 2.00                ; --                ;
; Sum of two 18x18    ; 78          ; 1.00                ; --                ;
; DSP Block           ; 96          ; --                  ; --                ;
; DSP 18-bit Element  ; 174         ; 2.00                ; --                ;
; Unsigned Multiplier ; 174         ; --                  ; --                ;
+---------------------+-------------+---------------------+-------------------+


Encoding Type:  One-Hot
+---------------------------------------------------------------------------------------------------------+
; State Machine - |fakequidditch|game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_state ;
+-----------------+-----------------+-----------------+---------------------------------------------------+
; Name            ; hor_state.float ; hor_state.right ; hor_state.left                                    ;
+-----------------+-----------------+-----------------+---------------------------------------------------+
; hor_state.float ; 0               ; 0               ; 0                                                 ;
; hor_state.left  ; 1               ; 0               ; 1                                                 ;
; hor_state.right ; 1               ; 1               ; 0                                                 ;
+-----------------+-----------------+-----------------+---------------------------------------------------+


Encoding Type:  One-Hot
+---------------------------------------------------------------------------------------------------------+
; State Machine - |fakequidditch|game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_state ;
+-----------------+-----------------+-----------------+---------------------------------------------------+
; Name            ; hor_state.float ; hor_state.right ; hor_state.left                                    ;
+-----------------+-----------------+-----------------+---------------------------------------------------+
; hor_state.float ; 0               ; 0               ; 0                                                 ;
; hor_state.left  ; 1               ; 0               ; 1                                                 ;
; hor_state.right ; 1               ; 1               ; 0                                                 ;
+-----------------+-----------------+-----------------+---------------------------------------------------+


Encoding Type:  One-Hot
+-----------------------------------------------------------------------------------------------------+
; State Machine - |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y ;
+-------------------+---------------------------------------------------------------------------------+
; Name              ; ball_dir_y.y_up                                                                 ;
+-------------------+---------------------------------------------------------------------------------+
; ball_dir_y.y_down ; 0                                                                               ;
; ball_dir_y.y_up   ; 1                                                                               ;
+-------------------+---------------------------------------------------------------------------------+


Encoding Type:  One-Hot
+-----------------------------------------------------------------------------------------------------+
; State Machine - |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x ;
+--------------------+--------------------------------------------------------------------------------+
; Name               ; ball_dir_x.x_right                                                             ;
+--------------------+--------------------------------------------------------------------------------+
; ball_dir_x.x_left  ; 0                                                                              ;
; ball_dir_x.x_right ; 1                                                                              ;
+--------------------+--------------------------------------------------------------------------------+


Encoding Type:  One-Hot
+------------------------------------------------------------------------------------------------+
; State Machine - |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|state ;
+-----------------+------------------------------------------------------------------------------+
; Name            ; state.active                                                                 ;
+-----------------+------------------------------------------------------------------------------+
; state.beginning ; 0                                                                            ;
; state.active    ; 1                                                                            ;
+-----------------+------------------------------------------------------------------------------+


Encoding Type:  One-Hot
+---------------------------------------------------------------------------------------------------------+
; State Machine - |fakequidditch|game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state ;
+-----------------+-----------------+----------------+----------------------------------------------------+
; Name            ; ver_state.float ; ver_state.down ; ver_state.up                                       ;
+-----------------+-----------------+----------------+----------------------------------------------------+
; ver_state.float ; 0               ; 0              ; 0                                                  ;
; ver_state.up    ; 1               ; 0              ; 1                                                  ;
; ver_state.down  ; 1               ; 1              ; 0                                                  ;
+-----------------+-----------------+----------------+----------------------------------------------------+


Encoding Type:  One-Hot
+---------------------------------------------------------------------------------------------------------+
; State Machine - |fakequidditch|game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state ;
+-----------------+-----------------+----------------+----------------------------------------------------+
; Name            ; ver_state.float ; ver_state.down ; ver_state.up                                       ;
+-----------------+-----------------+----------------+----------------------------------------------------+
; ver_state.float ; 0               ; 0              ; 0                                                  ;
; ver_state.up    ; 1               ; 0              ; 1                                                  ;
; ver_state.down  ; 1               ; 1              ; 0                                                  ;
+-----------------+-----------------+----------------+----------------------------------------------------+


+-----------------------------------------------------------------------------------------------------------------+
; Registers Removed During Synthesis                                                                              ;
+------------------------------------------------------------------------+----------------------------------------+
; Register name                                                          ; Reason for Removal                     ;
+------------------------------------------------------------------------+----------------------------------------+
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|cansu[1..31] ; Stuck at GND due to stuck port data_in ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y~3 ; Lost fanout                            ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x~3 ; Lost fanout                            ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|state~3      ; Lost fanout                            ;
; Total Number of Removed Registers = 34                                 ;                                        ;
+------------------------------------------------------------------------+----------------------------------------+


+------------------------------------------------------+
; General Register Statistics                          ;
+----------------------------------------------+-------+
; Statistic                                    ; Value ;
+----------------------------------------------+-------+
; Total registers                              ; 482   ;
; Number of registers using Synchronous Clear  ; 373   ;
; Number of registers using Synchronous Load   ; 0     ;
; Number of registers using Asynchronous Clear ; 0     ;
; Number of registers using Asynchronous Load  ; 0     ;
; Number of registers using Clock Enable       ; 119   ;
; Number of registers using Preset             ; 0     ;
+----------------------------------------------+-------+


+-------------------------------------------------------------------------------------+
; Inverted Register Statistics                                                        ;
+---------------------------------------------------------------------------+---------+
; Inverted Register                                                         ; Fan out ;
+---------------------------------------------------------------------------+---------+
; game_controller:game_ctrl|time_left[2]                                    ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[0]   ; 29      ;
; game_controller:game_ctrl|time_left[7]                                    ; 7       ;
; game_controller:game_ctrl|time_left[5]                                    ; 7       ;
; game_controller:game_ctrl|time_left[4]                                    ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[8]   ; 10      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[7]   ; 11      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[6]   ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[3]   ; 13      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[2]   ; 13      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[1]   ; 27      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[1]   ; 16      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[4]   ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[0]   ; 26      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[8]   ; 5       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[4] ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[1] ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[4] ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[1] ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|cansu[0]        ; 1       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[4] ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[1] ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[4] ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[1] ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[3] ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[7] ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[8] ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[3] ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[5] ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[6] ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[7] ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[3] ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[7] ; 4       ;
; game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[8] ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[3] ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[5] ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[6] ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[7] ; 4       ;
; Total number of inverted registers = 38                                   ;         ;
+---------------------------------------------------------------------------+---------+


+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Multiplexer Restructuring Statistics (Restructuring Performed)                                                                                                                                         ;
+--------------------+-----------+---------------+----------------------+------------------------+------------+------------------------------------------------------------------------------------------+
; Multiplexer Inputs ; Bus Width ; Baseline Area ; Area if Restructured ; Saving if Restructured ; Registered ; Example Multiplexer Output                                                               ;
+--------------------+-----------+---------------+----------------------+------------------------+------------+------------------------------------------------------------------------------------------+
; 3:1                ; 32 bits   ; 64 LEs        ; 0 LEs                ; 64 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|counter_clk[30]                                 ;
; 5:1                ; 4 bits    ; 12 LEs        ; 0 LEs                ; 12 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2] ;
; 5:1                ; 5 bits    ; 15 LEs        ; 0 LEs                ; 15 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[9] ;
; 5:1                ; 4 bits    ; 12 LEs        ; 0 LEs                ; 12 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[0] ;
; 5:1                ; 5 bits    ; 15 LEs        ; 0 LEs                ; 15 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[0] ;
; 8:1                ; 6 bits    ; 30 LEs        ; 6 LEs                ; 24 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[7]   ;
; 8:1                ; 3 bits    ; 15 LEs        ; 3 LEs                ; 12 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[9]   ;
; 5:1                ; 6 bits    ; 18 LEs        ; 0 LEs                ; 18 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[1] ;
; 5:1                ; 5 bits    ; 15 LEs        ; 0 LEs                ; 15 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl|hor_pos[1] ;
; 5:1                ; 6 bits    ; 18 LEs        ; 0 LEs                ; 18 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[4] ;
; 5:1                ; 5 bits    ; 15 LEs        ; 0 LEs                ; 15 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl|hor_pos[3] ;
; 8:1                ; 4 bits    ; 20 LEs        ; 4 LEs                ; 16 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[4]   ;
; 8:1                ; 7 bits    ; 35 LEs        ; 7 LEs                ; 28 LEs                 ; Yes        ; |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[0]   ;
; 4:1                ; 2 bits    ; 4 LEs         ; 4 LEs                ; 0 LEs                  ; No         ; |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y      ;
; 6:1                ; 2 bits    ; 8 LEs         ; 4 LEs                ; 4 LEs                  ; No         ; |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x      ;
+--------------------+-----------+---------------+----------------------+------------------------+------------+------------------------------------------------------------------------------------------+


+--------------------------------------------------------------------------------+
; Parameter Settings for User Entity Instance: game_controller:game_ctrl         ;
+---------------------------+----------------------------------+-----------------+
; Parameter Name            ; Value                            ; Type            ;
+---------------------------+----------------------------------+-----------------+
; PLAYER_RADIUS             ; 25                               ; Signed Integer  ;
; BALL_RADIUS               ; 5                                ; Signed Integer  ;
; GOAL_RADIUS               ; 25                               ; Signed Integer  ;
; INITIAL_VER_POS           ; 00000000000000000000000011111010 ; Unsigned Binary ;
; INITIAL_HOR_POS           ; 00000000000000000000000110011010 ; Unsigned Binary ;
; PLAYER_MOVEMENT_FREQUENCY ; 00000000000000110000110101000000 ; Unsigned Binary ;
; BALL_MOVEMENT_FREQUENCY   ; 00000000000001111010000100100000 ; Unsigned Binary ;
+---------------------------+----------------------------------+-----------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-------------------------------------------------------------------------------------------------------------+
; Parameter Settings for User Entity Instance: game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl ;
+--------------------+----------------------------------+-----------------------------------------------------+
; Parameter Name     ; Value                            ; Type                                                ;
+--------------------+----------------------------------+-----------------------------------------------------+
; PLAYER_RADIUS      ; 25                               ; Signed Integer                                      ;
; INITIAL_VER_POS    ; 00000000000000000000000011111010 ; Unsigned Binary                                     ;
; MOVEMENT_FREQUENCY ; 00000000000000110000110101000000 ; Unsigned Binary                                     ;
+--------------------+----------------------------------+-----------------------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-------------------------------------------------------------------------------------------------------------+
; Parameter Settings for User Entity Instance: game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl ;
+--------------------+----------------------------------+-----------------------------------------------------+
; Parameter Name     ; Value                            ; Type                                                ;
+--------------------+----------------------------------+-----------------------------------------------------+
; PLAYER_RADIUS      ; 25                               ; Signed Integer                                      ;
; INITIAL_VER_POS    ; 00000000000000000000000011111010 ; Unsigned Binary                                     ;
; MOVEMENT_FREQUENCY ; 00000000000000110000110101000000 ; Unsigned Binary                                     ;
+--------------------+----------------------------------+-----------------------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+--------------------------------------------------------------------------------------------------------+
; Parameter Settings for User Entity Instance: game_controller:game_ctrl|ball_controller_cansu:ball_ctrl ;
+--------------------+----------------------------------+------------------------------------------------+
; Parameter Name     ; Value                            ; Type                                           ;
+--------------------+----------------------------------+------------------------------------------------+
; PLAYER_RADIUS      ; 25                               ; Signed Integer                                 ;
; BALL_RADIUS        ; 5                                ; Signed Integer                                 ;
; GOAL_RADIUS        ; 25                               ; Signed Integer                                 ;
; MOVEMENT_FREQUENCY ; 00000000000001111010000100100000 ; Unsigned Binary                                ;
+--------------------+----------------------------------+------------------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-------------------------------------------------------------------------------------------------------------+
; Parameter Settings for User Entity Instance: game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl ;
+--------------------+----------------------------------+-----------------------------------------------------+
; Parameter Name     ; Value                            ; Type                                                ;
+--------------------+----------------------------------+-----------------------------------------------------+
; PLAYER_RADIUS      ; 25                               ; Signed Integer                                      ;
; INITIAL_HOR_POS    ; 00000000000000000000000110011010 ; Unsigned Binary                                     ;
; MOVEMENT_FREQUENCY ; 00000000000000110000110101000000 ; Unsigned Binary                                     ;
+--------------------+----------------------------------+-----------------------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-------------------------------------------------------------------------------------------------------------+
; Parameter Settings for User Entity Instance: game_controller:game_ctrl|hor_player_controller:team2_hor_ctrl ;
+--------------------+----------------------------------+-----------------------------------------------------+
; Parameter Name     ; Value                            ; Type                                                ;
+--------------------+----------------------------------+-----------------------------------------------------+
; PLAYER_RADIUS      ; 25                               ; Signed Integer                                      ;
; INITIAL_HOR_POS    ; 00000000000000000000000110011010 ; Unsigned Binary                                     ;
; MOVEMENT_FREQUENCY ; 00000000000000110000110101000000 ; Unsigned Binary                                     ;
+--------------------+----------------------------------+-----------------------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+----------------------------------------------------------------------+
; Parameter Settings for User Entity Instance: vga_controller:vga_cont ;
+----------------+-------+---------------------------------------------+
; Parameter Name ; Value ; Type                                        ;
+----------------+-------+---------------------------------------------+
; PLAYER_RADIUS  ; 25    ; Signed Integer                              ;
; GOAL_RADIUS    ; 25    ; Signed Integer                              ;
; BALL_RADIUS    ; 5     ; Signed Integer                              ;
+----------------+-------+---------------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_divide:Div0 ;
+------------------------+----------------+------------------------------------------------+
; Parameter Name         ; Value          ; Type                                           ;
+------------------------+----------------+------------------------------------------------+
; LPM_WIDTHN             ; 8              ; Untyped                                        ;
; LPM_WIDTHD             ; 6              ; Untyped                                        ;
; LPM_NREPRESENTATION    ; UNSIGNED       ; Untyped                                        ;
; LPM_DREPRESENTATION    ; UNSIGNED       ; Untyped                                        ;
; LPM_PIPELINE           ; 0              ; Untyped                                        ;
; LPM_REMAINDERPOSITIVE  ; TRUE           ; Untyped                                        ;
; MAXIMIZE_SPEED         ; 5              ; Untyped                                        ;
; CBXI_PARAMETER         ; lpm_divide_7am ; Untyped                                        ;
; CARRY_CHAIN            ; MANUAL         ; Untyped                                        ;
; OPTIMIZE_FOR_SPEED     ; 5              ; Untyped                                        ;
; AUTO_CARRY_CHAINS      ; ON             ; AUTO_CARRY                                     ;
; IGNORE_CARRY_BUFFERS   ; OFF            ; IGNORE_CARRY                                   ;
; AUTO_CASCADE_CHAINS    ; ON             ; AUTO_CASCADE                                   ;
; IGNORE_CASCADE_BUFFERS ; OFF            ; IGNORE_CASCADE                                 ;
+------------------------+----------------+------------------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_divide:Mod0 ;
+------------------------+----------------+------------------------------------------------+
; Parameter Name         ; Value          ; Type                                           ;
+------------------------+----------------+------------------------------------------------+
; LPM_WIDTHN             ; 8              ; Untyped                                        ;
; LPM_WIDTHD             ; 6              ; Untyped                                        ;
; LPM_NREPRESENTATION    ; UNSIGNED       ; Untyped                                        ;
; LPM_DREPRESENTATION    ; UNSIGNED       ; Untyped                                        ;
; LPM_PIPELINE           ; 0              ; Untyped                                        ;
; LPM_REMAINDERPOSITIVE  ; TRUE           ; Untyped                                        ;
; MAXIMIZE_SPEED         ; 5              ; Untyped                                        ;
; CBXI_PARAMETER         ; lpm_divide_a2m ; Untyped                                        ;
; CARRY_CHAIN            ; MANUAL         ; Untyped                                        ;
; OPTIMIZE_FOR_SPEED     ; 5              ; Untyped                                        ;
; AUTO_CARRY_CHAINS      ; ON             ; AUTO_CARRY                                     ;
; IGNORE_CARRY_BUFFERS   ; OFF            ; IGNORE_CARRY                                   ;
; AUTO_CASCADE_CHAINS    ; ON             ; AUTO_CASCADE                                   ;
; IGNORE_CASCADE_BUFFERS ; OFF            ; IGNORE_CASCADE                                 ;
+------------------------+----------------+------------------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_divide:Mod1 ;
+------------------------+----------------+------------------------------------------------+
; Parameter Name         ; Value          ; Type                                           ;
+------------------------+----------------+------------------------------------------------+
; LPM_WIDTHN             ; 6              ; Untyped                                        ;
; LPM_WIDTHD             ; 4              ; Untyped                                        ;
; LPM_NREPRESENTATION    ; UNSIGNED       ; Untyped                                        ;
; LPM_DREPRESENTATION    ; UNSIGNED       ; Untyped                                        ;
; LPM_PIPELINE           ; 0              ; Untyped                                        ;
; LPM_REMAINDERPOSITIVE  ; TRUE           ; Untyped                                        ;
; MAXIMIZE_SPEED         ; 5              ; Untyped                                        ;
; CBXI_PARAMETER         ; lpm_divide_62m ; Untyped                                        ;
; CARRY_CHAIN            ; MANUAL         ; Untyped                                        ;
; OPTIMIZE_FOR_SPEED     ; 5              ; Untyped                                        ;
; AUTO_CARRY_CHAINS      ; ON             ; AUTO_CARRY                                     ;
; IGNORE_CARRY_BUFFERS   ; OFF            ; IGNORE_CARRY                                   ;
; AUTO_CASCADE_CHAINS    ; ON             ; AUTO_CASCADE                                   ;
; IGNORE_CASCADE_BUFFERS ; OFF            ; IGNORE_CASCADE                                 ;
+------------------------+----------------+------------------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_divide:Div1 ;
+------------------------+----------------+------------------------------------------------+
; Parameter Name         ; Value          ; Type                                           ;
+------------------------+----------------+------------------------------------------------+
; LPM_WIDTHN             ; 6              ; Untyped                                        ;
; LPM_WIDTHD             ; 4              ; Untyped                                        ;
; LPM_NREPRESENTATION    ; UNSIGNED       ; Untyped                                        ;
; LPM_DREPRESENTATION    ; UNSIGNED       ; Untyped                                        ;
; LPM_PIPELINE           ; 0              ; Untyped                                        ;
; LPM_REMAINDERPOSITIVE  ; TRUE           ; Untyped                                        ;
; MAXIMIZE_SPEED         ; 5              ; Untyped                                        ;
; CBXI_PARAMETER         ; lpm_divide_3am ; Untyped                                        ;
; CARRY_CHAIN            ; MANUAL         ; Untyped                                        ;
; OPTIMIZE_FOR_SPEED     ; 5              ; Untyped                                        ;
; AUTO_CARRY_CHAINS      ; ON             ; AUTO_CARRY                                     ;
; IGNORE_CARRY_BUFFERS   ; OFF            ; IGNORE_CARRY                                   ;
; AUTO_CASCADE_CHAINS    ; ON             ; AUTO_CASCADE                                   ;
; IGNORE_CASCADE_BUFFERS ; OFF            ; IGNORE_CASCADE                                 ;
+------------------------+----------------+------------------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-----------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult6_rtl_0 ;
+------------------------------------------------+-----------+----------------------------------+
; Parameter Name                                 ; Value     ; Type                             ;
+------------------------------------------------+-----------+----------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                       ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                     ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                     ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                   ;
; LPM_WIDTHA                                     ; 18        ; Untyped                          ;
; LPM_WIDTHB                                     ; 18        ; Untyped                          ;
; LPM_WIDTHP                                     ; 36        ; Untyped                          ;
; LPM_WIDTHR                                     ; 36        ; Untyped                          ;
; LPM_WIDTHS                                     ; 1         ; Untyped                          ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                          ;
; LPM_PIPELINE                                   ; 0         ; Untyped                          ;
; LATENCY                                        ; 0         ; Untyped                          ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                          ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                          ;
; USE_EAB                                        ; OFF       ; Untyped                          ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                          ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                          ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                          ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K              ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                          ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                          ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                          ;
+------------------------------------------------+-----------+----------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-----------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult7_rtl_1 ;
+------------------------------------------------+-----------+----------------------------------+
; Parameter Name                                 ; Value     ; Type                             ;
+------------------------------------------------+-----------+----------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                       ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                     ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                     ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                   ;
; LPM_WIDTHA                                     ; 18        ; Untyped                          ;
; LPM_WIDTHB                                     ; 18        ; Untyped                          ;
; LPM_WIDTHP                                     ; 36        ; Untyped                          ;
; LPM_WIDTHR                                     ; 36        ; Untyped                          ;
; LPM_WIDTHS                                     ; 1         ; Untyped                          ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                          ;
; LPM_PIPELINE                                   ; 0         ; Untyped                          ;
; LATENCY                                        ; 0         ; Untyped                          ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                          ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                          ;
; USE_EAB                                        ; OFF       ; Untyped                          ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                          ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                          ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                          ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K              ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                          ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                          ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                          ;
+------------------------------------------------+-----------+----------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+------------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult11_rtl_2 ;
+------------------------------------------------+-----------+-----------------------------------+
; Parameter Name                                 ; Value     ; Type                              ;
+------------------------------------------------+-----------+-----------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                        ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                      ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                      ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                    ;
; LPM_WIDTHA                                     ; 18        ; Untyped                           ;
; LPM_WIDTHB                                     ; 18        ; Untyped                           ;
; LPM_WIDTHP                                     ; 36        ; Untyped                           ;
; LPM_WIDTHR                                     ; 36        ; Untyped                           ;
; LPM_WIDTHS                                     ; 1         ; Untyped                           ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                           ;
; LPM_PIPELINE                                   ; 0         ; Untyped                           ;
; LATENCY                                        ; 0         ; Untyped                           ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                           ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                           ;
; USE_EAB                                        ; OFF       ; Untyped                           ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                           ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                           ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                           ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K               ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                           ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                           ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                           ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                           ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                           ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                           ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                           ;
+------------------------------------------------+-----------+-----------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+------------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult15_rtl_3 ;
+------------------------------------------------+-----------+-----------------------------------+
; Parameter Name                                 ; Value     ; Type                              ;
+------------------------------------------------+-----------+-----------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                        ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                      ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                      ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                    ;
; LPM_WIDTHA                                     ; 18        ; Untyped                           ;
; LPM_WIDTHB                                     ; 18        ; Untyped                           ;
; LPM_WIDTHP                                     ; 36        ; Untyped                           ;
; LPM_WIDTHR                                     ; 36        ; Untyped                           ;
; LPM_WIDTHS                                     ; 1         ; Untyped                           ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                           ;
; LPM_PIPELINE                                   ; 0         ; Untyped                           ;
; LATENCY                                        ; 0         ; Untyped                           ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                           ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                           ;
; USE_EAB                                        ; OFF       ; Untyped                           ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                           ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                           ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                           ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K               ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                           ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                           ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                           ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                           ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                           ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                           ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                           ;
+------------------------------------------------+-----------+-----------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-----------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult2_rtl_4 ;
+------------------------------------------------+-----------+----------------------------------+
; Parameter Name                                 ; Value     ; Type                             ;
+------------------------------------------------+-----------+----------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                       ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                     ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                     ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                   ;
; LPM_WIDTHA                                     ; 18        ; Untyped                          ;
; LPM_WIDTHB                                     ; 18        ; Untyped                          ;
; LPM_WIDTHP                                     ; 36        ; Untyped                          ;
; LPM_WIDTHR                                     ; 36        ; Untyped                          ;
; LPM_WIDTHS                                     ; 1         ; Untyped                          ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                          ;
; LPM_PIPELINE                                   ; 0         ; Untyped                          ;
; LATENCY                                        ; 0         ; Untyped                          ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                          ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                          ;
; USE_EAB                                        ; OFF       ; Untyped                          ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                          ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                          ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                          ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K              ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                          ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                          ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                          ;
+------------------------------------------------+-----------+----------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-----------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult3_rtl_5 ;
+------------------------------------------------+-----------+----------------------------------+
; Parameter Name                                 ; Value     ; Type                             ;
+------------------------------------------------+-----------+----------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                       ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                     ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                     ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                   ;
; LPM_WIDTHA                                     ; 18        ; Untyped                          ;
; LPM_WIDTHB                                     ; 18        ; Untyped                          ;
; LPM_WIDTHP                                     ; 36        ; Untyped                          ;
; LPM_WIDTHR                                     ; 36        ; Untyped                          ;
; LPM_WIDTHS                                     ; 1         ; Untyped                          ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                          ;
; LPM_PIPELINE                                   ; 0         ; Untyped                          ;
; LATENCY                                        ; 0         ; Untyped                          ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                          ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                          ;
; USE_EAB                                        ; OFF       ; Untyped                          ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                          ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                          ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                          ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K              ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                          ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                          ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                          ;
+------------------------------------------------+-----------+----------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-----------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult5_rtl_6 ;
+------------------------------------------------+-----------+----------------------------------+
; Parameter Name                                 ; Value     ; Type                             ;
+------------------------------------------------+-----------+----------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                       ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                     ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                     ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                   ;
; LPM_WIDTHA                                     ; 18        ; Untyped                          ;
; LPM_WIDTHB                                     ; 18        ; Untyped                          ;
; LPM_WIDTHP                                     ; 36        ; Untyped                          ;
; LPM_WIDTHR                                     ; 36        ; Untyped                          ;
; LPM_WIDTHS                                     ; 1         ; Untyped                          ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                          ;
; LPM_PIPELINE                                   ; 0         ; Untyped                          ;
; LATENCY                                        ; 0         ; Untyped                          ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                          ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                          ;
; USE_EAB                                        ; OFF       ; Untyped                          ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                          ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                          ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                          ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K              ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                          ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                          ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                          ;
+------------------------------------------------+-----------+----------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-----------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult4_rtl_7 ;
+------------------------------------------------+-----------+----------------------------------+
; Parameter Name                                 ; Value     ; Type                             ;
+------------------------------------------------+-----------+----------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                       ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                     ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                     ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                   ;
; LPM_WIDTHA                                     ; 18        ; Untyped                          ;
; LPM_WIDTHB                                     ; 18        ; Untyped                          ;
; LPM_WIDTHP                                     ; 36        ; Untyped                          ;
; LPM_WIDTHR                                     ; 36        ; Untyped                          ;
; LPM_WIDTHS                                     ; 1         ; Untyped                          ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                          ;
; LPM_PIPELINE                                   ; 0         ; Untyped                          ;
; LATENCY                                        ; 0         ; Untyped                          ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                          ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                          ;
; USE_EAB                                        ; OFF       ; Untyped                          ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                          ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                          ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                          ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K              ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                          ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                          ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                          ;
+------------------------------------------------+-----------+----------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-----------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult0_rtl_8 ;
+------------------------------------------------+-----------+----------------------------------+
; Parameter Name                                 ; Value     ; Type                             ;
+------------------------------------------------+-----------+----------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                       ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                     ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                     ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                   ;
; LPM_WIDTHA                                     ; 10        ; Untyped                          ;
; LPM_WIDTHB                                     ; 10        ; Untyped                          ;
; LPM_WIDTHP                                     ; 20        ; Untyped                          ;
; LPM_WIDTHR                                     ; 20        ; Untyped                          ;
; LPM_WIDTHS                                     ; 1         ; Untyped                          ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                          ;
; LPM_PIPELINE                                   ; 0         ; Untyped                          ;
; LATENCY                                        ; 0         ; Untyped                          ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                          ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                          ;
; USE_EAB                                        ; OFF       ; Untyped                          ;
; MAXIMIZE_SPEED                                 ; 6         ; Untyped                          ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                          ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                          ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K              ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                          ;
; CBXI_PARAMETER                                 ; mult_2l01 ; Untyped                          ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                          ;
+------------------------------------------------+-----------+----------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-----------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult1_rtl_9 ;
+------------------------------------------------+-----------+----------------------------------+
; Parameter Name                                 ; Value     ; Type                             ;
+------------------------------------------------+-----------+----------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                       ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                     ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                     ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                   ;
; LPM_WIDTHA                                     ; 10        ; Untyped                          ;
; LPM_WIDTHB                                     ; 10        ; Untyped                          ;
; LPM_WIDTHP                                     ; 20        ; Untyped                          ;
; LPM_WIDTHR                                     ; 20        ; Untyped                          ;
; LPM_WIDTHS                                     ; 1         ; Untyped                          ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                          ;
; LPM_PIPELINE                                   ; 0         ; Untyped                          ;
; LATENCY                                        ; 0         ; Untyped                          ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                          ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                          ;
; USE_EAB                                        ; OFF       ; Untyped                          ;
; MAXIMIZE_SPEED                                 ; 6         ; Untyped                          ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                          ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                          ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K              ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                          ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                          ;
; CBXI_PARAMETER                                 ; mult_2l01 ; Untyped                          ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                          ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                          ;
+------------------------------------------------+-----------+----------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-------------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult38_rtl_10 ;
+------------------------------------------------+-----------+------------------------------------+
; Parameter Name                                 ; Value     ; Type                               ;
+------------------------------------------------+-----------+------------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                         ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                       ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                       ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                     ;
; LPM_WIDTHA                                     ; 18        ; Untyped                            ;
; LPM_WIDTHB                                     ; 18        ; Untyped                            ;
; LPM_WIDTHP                                     ; 36        ; Untyped                            ;
; LPM_WIDTHR                                     ; 36        ; Untyped                            ;
; LPM_WIDTHS                                     ; 1         ; Untyped                            ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                            ;
; LPM_PIPELINE                                   ; 0         ; Untyped                            ;
; LATENCY                                        ; 0         ; Untyped                            ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                            ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                            ;
; USE_EAB                                        ; OFF       ; Untyped                            ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                            ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                            ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                            ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K                ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                            ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                            ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                            ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                            ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                            ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                            ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                            ;
+------------------------------------------------+-----------+------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-------------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult22_rtl_11 ;
+------------------------------------------------+-----------+------------------------------------+
; Parameter Name                                 ; Value     ; Type                               ;
+------------------------------------------------+-----------+------------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                         ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                       ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                       ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                     ;
; LPM_WIDTHA                                     ; 18        ; Untyped                            ;
; LPM_WIDTHB                                     ; 18        ; Untyped                            ;
; LPM_WIDTHP                                     ; 36        ; Untyped                            ;
; LPM_WIDTHR                                     ; 36        ; Untyped                            ;
; LPM_WIDTHS                                     ; 1         ; Untyped                            ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                            ;
; LPM_PIPELINE                                   ; 0         ; Untyped                            ;
; LATENCY                                        ; 0         ; Untyped                            ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                            ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                            ;
; USE_EAB                                        ; OFF       ; Untyped                            ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                            ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                            ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                            ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K                ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                            ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                            ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                            ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                            ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                            ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                            ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                            ;
+------------------------------------------------+-----------+------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-------------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult23_rtl_12 ;
+------------------------------------------------+-----------+------------------------------------+
; Parameter Name                                 ; Value     ; Type                               ;
+------------------------------------------------+-----------+------------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                         ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                       ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                       ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                     ;
; LPM_WIDTHA                                     ; 18        ; Untyped                            ;
; LPM_WIDTHB                                     ; 18        ; Untyped                            ;
; LPM_WIDTHP                                     ; 36        ; Untyped                            ;
; LPM_WIDTHR                                     ; 36        ; Untyped                            ;
; LPM_WIDTHS                                     ; 1         ; Untyped                            ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                            ;
; LPM_PIPELINE                                   ; 0         ; Untyped                            ;
; LATENCY                                        ; 0         ; Untyped                            ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                            ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                            ;
; USE_EAB                                        ; OFF       ; Untyped                            ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                            ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                            ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                            ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K                ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                            ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                            ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                            ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                            ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                            ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                            ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                            ;
+------------------------------------------------+-----------+------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-------------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult25_rtl_13 ;
+------------------------------------------------+-----------+------------------------------------+
; Parameter Name                                 ; Value     ; Type                               ;
+------------------------------------------------+-----------+------------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                         ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                       ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                       ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                     ;
; LPM_WIDTHA                                     ; 18        ; Untyped                            ;
; LPM_WIDTHB                                     ; 18        ; Untyped                            ;
; LPM_WIDTHP                                     ; 36        ; Untyped                            ;
; LPM_WIDTHR                                     ; 36        ; Untyped                            ;
; LPM_WIDTHS                                     ; 1         ; Untyped                            ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                            ;
; LPM_PIPELINE                                   ; 0         ; Untyped                            ;
; LATENCY                                        ; 0         ; Untyped                            ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                            ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                            ;
; USE_EAB                                        ; OFF       ; Untyped                            ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                            ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                            ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                            ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K                ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                            ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                            ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                            ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                            ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                            ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                            ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                            ;
+------------------------------------------------+-----------+------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+-------------------------------------------------------------------------------------------------+
; Parameter Settings for Inferred Entity Instance: vga_controller:vga_cont|lpm_mult:Mult24_rtl_14 ;
+------------------------------------------------+-----------+------------------------------------+
; Parameter Name                                 ; Value     ; Type                               ;
+------------------------------------------------+-----------+------------------------------------+
; AUTO_CARRY_CHAINS                              ; ON        ; AUTO_CARRY                         ;
; IGNORE_CARRY_BUFFERS                           ; OFF       ; IGNORE_CARRY                       ;
; AUTO_CASCADE_CHAINS                            ; ON        ; AUTO_CASCADE                       ;
; IGNORE_CASCADE_BUFFERS                         ; OFF       ; IGNORE_CASCADE                     ;
; LPM_WIDTHA                                     ; 18        ; Untyped                            ;
; LPM_WIDTHB                                     ; 18        ; Untyped                            ;
; LPM_WIDTHP                                     ; 36        ; Untyped                            ;
; LPM_WIDTHR                                     ; 36        ; Untyped                            ;
; LPM_WIDTHS                                     ; 1         ; Untyped                            ;
; LPM_REPRESENTATION                             ; UNSIGNED  ; Untyped                            ;
; LPM_PIPELINE                                   ; 0         ; Untyped                            ;
; LATENCY                                        ; 0         ; Untyped                            ;
; INPUT_A_IS_CONSTANT                            ; NO        ; Untyped                            ;
; INPUT_B_IS_CONSTANT                            ; NO        ; Untyped                            ;
; USE_EAB                                        ; OFF       ; Untyped                            ;
; MAXIMIZE_SPEED                                 ; 5         ; Untyped                            ;
; DEVICE_FAMILY                                  ; Cyclone V ; Untyped                            ;
; CARRY_CHAIN                                    ; MANUAL    ; Untyped                            ;
; APEX20K_TECHNOLOGY_MAPPER                      ; LUT       ; TECH_MAPPER_APEX20K                ;
; DEDICATED_MULTIPLIER_CIRCUITRY                 ; NO        ; Untyped                            ;
; DEDICATED_MULTIPLIER_MIN_INPUT_WIDTH_FOR_AUTO  ; 0         ; Untyped                            ;
; DEDICATED_MULTIPLIER_MIN_OUTPUT_WIDTH_FOR_AUTO ; 0         ; Untyped                            ;
; CBXI_PARAMETER                                 ; mult_ol01 ; Untyped                            ;
; INPUT_A_FIXED_VALUE                            ; Bx        ; Untyped                            ;
; INPUT_B_FIXED_VALUE                            ; Bx        ; Untyped                            ;
; USE_AHDL_IMPLEMENTATION                        ; OFF       ; Untyped                            ;
+------------------------------------------------+-----------+------------------------------------+
Note: In order to hide this table in the UI and the text report file, please set the "Show Parameter Settings in Synthesis Report" option in "Analysis and Synthesis Settings -> More Settings" to "Off".


+----------------------------------------------------------------------------------------+
; lpm_mult Parameter Settings by Entity Instance                                         ;
+---------------------------------------+------------------------------------------------+
; Name                                  ; Value                                          ;
+---------------------------------------+------------------------------------------------+
; Number of entity instances            ; 15                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult6_rtl_0   ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult7_rtl_1   ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult11_rtl_2  ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult15_rtl_3  ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4   ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5   ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult5_rtl_6   ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult4_rtl_7   ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult0_rtl_8   ;
;     -- LPM_WIDTHA                     ; 10                                             ;
;     -- LPM_WIDTHB                     ; 10                                             ;
;     -- LPM_WIDTHP                     ; 20                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult1_rtl_9   ;
;     -- LPM_WIDTHA                     ; 10                                             ;
;     -- LPM_WIDTHB                     ; 10                                             ;
;     -- LPM_WIDTHP                     ; 20                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult38_rtl_10 ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult22_rtl_11 ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult23_rtl_12 ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult25_rtl_13 ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
; Entity Instance                       ; vga_controller:vga_cont|lpm_mult:Mult24_rtl_14 ;
;     -- LPM_WIDTHA                     ; 18                                             ;
;     -- LPM_WIDTHB                     ; 18                                             ;
;     -- LPM_WIDTHP                     ; 36                                             ;
;     -- LPM_REPRESENTATION             ; UNSIGNED                                       ;
;     -- INPUT_A_IS_CONSTANT            ; NO                                             ;
;     -- INPUT_B_IS_CONSTANT            ; NO                                             ;
;     -- USE_EAB                        ; OFF                                            ;
;     -- DEDICATED_MULTIPLIER_CIRCUITRY ; NO                                             ;
;     -- INPUT_A_FIXED_VALUE            ; Bx                                             ;
;     -- INPUT_B_FIXED_VALUE            ; Bx                                             ;
+---------------------------------------+------------------------------------------------+


+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Port Connectivity Checks: "game_controller:game_ctrl|ball_controller_cansu:ball_ctrl"                                                                                                                                    ;
+-----------------+--------+----------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Port            ; Type   ; Severity ; Details                                                                                                                                                                            ;
+-----------------+--------+----------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; team2_ver_pos   ; Input  ; Warning  ; Input port expression (1 bits) is smaller than the input port (10 bits) it drives.  Extra input bit(s) "team2_ver_pos[9..1]" will be connected to GND.                             ;
; team2_hor_pos   ; Input  ; Warning  ; Input port expression (1 bits) is smaller than the input port (10 bits) it drives.  Extra input bit(s) "team2_hor_pos[9..1]" will be connected to GND.                             ;
; team2_hl_button ; Input  ; Warning  ; Input port expression (19 bits) is wider than the input port (1 bits) it drives.  The 18 most-significant bit(s) in the expression will be dangling if they have no other fanouts. ;
; team2_hr_button ; Input  ; Warning  ; Input port expression (19 bits) is wider than the input port (1 bits) it drives.  The 18 most-significant bit(s) in the expression will be dangling if they have no other fanouts. ;
; x_position      ; Output ; Warning  ; Output or bidir port (10 bits) is wider than the port expression (1 bits) it drives; bit(s) "x_position[9..1]" have no fanouts                                                     ;
; y_position      ; Output ; Warning  ; Declared by entity but not connected by instance. Logic that only feeds a dangling port will be removed.                                                                           ;
; game_on         ; Output ; Warning  ; Declared by entity but not connected by instance. Logic that only feeds a dangling port will be removed.                                                                           ;
+-----------------+--------+----------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+


+-----------------------------------------------------------------------------------------------------------------------+
; Port Connectivity Checks: "game_controller:game_ctrl"                                                                 ;
+-------------+--------+----------+-------------------------------------------------------------------------------------+
; Port        ; Type   ; Severity ; Details                                                                             ;
+-------------+--------+----------+-------------------------------------------------------------------------------------+
; team1_score ; Output ; Info     ; Connected to dangling logic. Logic that only feeds a dangling port will be removed. ;
; team2_score ; Output ; Info     ; Connected to dangling logic. Logic that only feeds a dangling port will be removed. ;
+-------------+--------+----------+-------------------------------------------------------------------------------------+


+-------------------------------+
; Elapsed Time Per Partition    ;
+----------------+--------------+
; Partition Name ; Elapsed Time ;
+----------------+--------------+
; Top            ; 00:00:08     ;
+----------------+--------------+


+-------------------------------+
; Analysis & Synthesis Messages ;
+-------------------------------+
Info: *******************************************************************
Info: Running Quartus II 64-Bit Analysis & Synthesis
    Info: Version 13.1.0 Build 162 10/23/2013 SJ Web Edition
    Info: Processing started: Wed May 29 14:47:41 2019
Info: Command: quartus_map --read_settings_files=on --write_settings_files=off fakequidditch -c fakequidditch
Info (11104): Parallel Compilation has detected 4 hyper-threaded processors. However, the extra hyper-threaded processors will not be used by default. Parallel Compilation will use 2 of the 2 physical processors detected instead.
Info (12021): Found 1 design units, including 1 entities, in source file fakequidditch.v
    Info (12023): Found entity 1: fakequidditch
Info (12021): Found 1 design units, including 1 entities, in source file vga_controller/vga_controller.v
    Info (12023): Found entity 1: vga_controller
Info (12021): Found 1 design units, including 1 entities, in source file game_controller/game_controller.v
    Info (12023): Found entity 1: game_controller
Info (12021): Found 1 design units, including 1 entities, in source file game_controller/ver_player_controller.v
    Info (12023): Found entity 1: ver_player_controller
Info (12021): Found 0 design units, including 0 entities, in source file board.v
Info (12021): Found 1 design units, including 1 entities, in source file game_controller/ball_controller_cansu.v
    Info (12023): Found entity 1: ball_controller_cansu
Info (12021): Found 1 design units, including 1 entities, in source file game_controller/hor_player_controller.v
    Info (12023): Found entity 1: hor_player_controller
Warning (10090): Verilog HDL syntax warning at bludger_controller.v(14): extra block comment delimiter characters /* within block comment
Info (12021): Found 0 design units, including 0 entities, in source file game_controller/bludger_controller.v
Warning (10222): Verilog HDL Parameter Declaration warning at ver_player_controller.v(15): Parameter Declaration in module "ver_player_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at ver_player_controller.v(16): Parameter Declaration in module "ver_player_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at ver_player_controller.v(17): Parameter Declaration in module "ver_player_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at ball_controller_cansu.v(42): Parameter Declaration in module "ball_controller_cansu" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at ball_controller_cansu.v(43): Parameter Declaration in module "ball_controller_cansu" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at ball_controller_cansu.v(46): Parameter Declaration in module "ball_controller_cansu" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at ball_controller_cansu.v(47): Parameter Declaration in module "ball_controller_cansu" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at ball_controller_cansu.v(57): Parameter Declaration in module "ball_controller_cansu" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at ball_controller_cansu.v(58): Parameter Declaration in module "ball_controller_cansu" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at hor_player_controller.v(15): Parameter Declaration in module "hor_player_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at hor_player_controller.v(16): Parameter Declaration in module "hor_player_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at hor_player_controller.v(17): Parameter Declaration in module "hor_player_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(30): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(31): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(32): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(33): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(34): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(35): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(37): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(38): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(39): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(40): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(41): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(42): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(44): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(45): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(47): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(48): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(50): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Warning (10222): Verilog HDL Parameter Declaration warning at vga_controller.v(51): Parameter Declaration in module "vga_controller" behaves as a Local Parameter Declaration because the module has a Module Parameter Port List
Info (12127): Elaborating entity "fakequidditch" for the top level hierarchy
Info (12128): Elaborating entity "game_controller" for hierarchy "game_controller:game_ctrl"
Warning (10858): Verilog HDL warning at game_controller.v(36): object score_to_team1 used but never assigned
Warning (10858): Verilog HDL warning at game_controller.v(37): object score_to_team2 used but never assigned
Warning (10230): Verilog HDL assignment warning at game_controller.v(76): truncated value with size 32 to match size of target (8)
Warning (10030): Net "score_to_team1" at game_controller.v(36) has no driver or initial value, using a default initial value '0'
Warning (10030): Net "score_to_team2" at game_controller.v(37) has no driver or initial value, using a default initial value '0'
Info (12128): Elaborating entity "ver_player_controller" for hierarchy "game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl"
Warning (10230): Verilog HDL assignment warning at ver_player_controller.v(23): truncated value with size 32 to match size of target (10)
Warning (10230): Verilog HDL assignment warning at ver_player_controller.v(62): truncated value with size 32 to match size of target (10)
Warning (10230): Verilog HDL assignment warning at ver_player_controller.v(65): truncated value with size 32 to match size of target (10)
Info (12128): Elaborating entity "ball_controller_cansu" for hierarchy "game_controller:game_ctrl|ball_controller_cansu:ball_ctrl"
Warning (10036): Verilog HDL or VHDL warning at ball_controller_cansu.v(49): object "ball_collution" assigned a value but never read
Warning (10230): Verilog HDL assignment warning at ball_controller_cansu.v(154): truncated value with size 32 to match size of target (10)
Warning (10230): Verilog HDL assignment warning at ball_controller_cansu.v(158): truncated value with size 32 to match size of target (10)
Warning (10230): Verilog HDL assignment warning at ball_controller_cansu.v(160): truncated value with size 32 to match size of target (10)
Warning (10230): Verilog HDL assignment warning at ball_controller_cansu.v(163): truncated value with size 32 to match size of target (10)
Info (12128): Elaborating entity "hor_player_controller" for hierarchy "game_controller:game_ctrl|hor_player_controller:team1_hor_ctrl"
Warning (10230): Verilog HDL assignment warning at hor_player_controller.v(23): truncated value with size 32 to match size of target (10)
Warning (10230): Verilog HDL assignment warning at hor_player_controller.v(58): truncated value with size 32 to match size of target (10)
Warning (10230): Verilog HDL assignment warning at hor_player_controller.v(61): truncated value with size 32 to match size of target (10)
Info (12128): Elaborating entity "vga_controller" for hierarchy "vga_controller:vga_cont"
Warning (10230): Verilog HDL assignment warning at vga_controller.v(61): truncated value with size 32 to match size of target (4)
Warning (10230): Verilog HDL assignment warning at vga_controller.v(62): truncated value with size 32 to match size of target (4)
Warning (10230): Verilog HDL assignment warning at vga_controller.v(63): truncated value with size 32 to match size of target (4)
Warning (10230): Verilog HDL assignment warning at vga_controller.v(74): truncated value with size 32 to match size of target (10)
Warning (10230): Verilog HDL assignment warning at vga_controller.v(87): truncated value with size 32 to match size of target (10)
Info (278001): Inferred 19 megafunctions from design logic
    Info (278004): Inferred divider/modulo megafunction ("lpm_divide") from the following logic: "vga_controller:vga_cont|Div0"
    Info (278004): Inferred divider/modulo megafunction ("lpm_divide") from the following logic: "vga_controller:vga_cont|Mod0"
    Info (278004): Inferred divider/modulo megafunction ("lpm_divide") from the following logic: "vga_controller:vga_cont|Mod1"
    Info (278004): Inferred divider/modulo megafunction ("lpm_divide") from the following logic: "vga_controller:vga_cont|Div1"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult6~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult7~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult11~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult15~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult2~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult3~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult5~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult4~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult0~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult1~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult38~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult22~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult23~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult25~mult_llmacmult"
    Info (278003): Inferred multiplier megafunction ("lpm_mult") from the following logic: "vga_controller:vga_cont|Mult24~mult_llmacmult"
Info (12130): Elaborated megafunction instantiation "vga_controller:vga_cont|lpm_divide:Div0"
Info (12133): Instantiated megafunction "vga_controller:vga_cont|lpm_divide:Div0" with the following parameter:
    Info (12134): Parameter "LPM_WIDTHN" = "8"
    Info (12134): Parameter "LPM_WIDTHD" = "6"
    Info (12134): Parameter "LPM_NREPRESENTATION" = "UNSIGNED"
    Info (12134): Parameter "LPM_DREPRESENTATION" = "UNSIGNED"
Info (12021): Found 1 design units, including 1 entities, in source file db/lpm_divide_7am.tdf
    Info (12023): Found entity 1: lpm_divide_7am
Info (12021): Found 1 design units, including 1 entities, in source file db/sign_div_unsign_dkh.tdf
    Info (12023): Found entity 1: sign_div_unsign_dkh
Info (12021): Found 1 design units, including 1 entities, in source file db/alt_u_div_0te.tdf
    Info (12023): Found entity 1: alt_u_div_0te
Info (12130): Elaborated megafunction instantiation "vga_controller:vga_cont|lpm_divide:Mod0"
Info (12133): Instantiated megafunction "vga_controller:vga_cont|lpm_divide:Mod0" with the following parameter:
    Info (12134): Parameter "LPM_WIDTHN" = "8"
    Info (12134): Parameter "LPM_WIDTHD" = "6"
    Info (12134): Parameter "LPM_NREPRESENTATION" = "UNSIGNED"
    Info (12134): Parameter "LPM_DREPRESENTATION" = "UNSIGNED"
Info (12021): Found 1 design units, including 1 entities, in source file db/lpm_divide_a2m.tdf
    Info (12023): Found entity 1: lpm_divide_a2m
Info (12130): Elaborated megafunction instantiation "vga_controller:vga_cont|lpm_divide:Mod1"
Info (12133): Instantiated megafunction "vga_controller:vga_cont|lpm_divide:Mod1" with the following parameter:
    Info (12134): Parameter "LPM_WIDTHN" = "6"
    Info (12134): Parameter "LPM_WIDTHD" = "4"
    Info (12134): Parameter "LPM_NREPRESENTATION" = "UNSIGNED"
    Info (12134): Parameter "LPM_DREPRESENTATION" = "UNSIGNED"
Info (12021): Found 1 design units, including 1 entities, in source file db/lpm_divide_62m.tdf
    Info (12023): Found entity 1: lpm_divide_62m
Info (12021): Found 1 design units, including 1 entities, in source file db/sign_div_unsign_9kh.tdf
    Info (12023): Found entity 1: sign_div_unsign_9kh
Info (12021): Found 1 design units, including 1 entities, in source file db/alt_u_div_ose.tdf
    Info (12023): Found entity 1: alt_u_div_ose
Info (12130): Elaborated megafunction instantiation "vga_controller:vga_cont|lpm_divide:Div1"
Info (12133): Instantiated megafunction "vga_controller:vga_cont|lpm_divide:Div1" with the following parameter:
    Info (12134): Parameter "LPM_WIDTHN" = "6"
    Info (12134): Parameter "LPM_WIDTHD" = "4"
    Info (12134): Parameter "LPM_NREPRESENTATION" = "UNSIGNED"
    Info (12134): Parameter "LPM_DREPRESENTATION" = "UNSIGNED"
Info (12021): Found 1 design units, including 1 entities, in source file db/lpm_divide_3am.tdf
    Info (12023): Found entity 1: lpm_divide_3am
Info (12130): Elaborated megafunction instantiation "vga_controller:vga_cont|lpm_mult:Mult6_rtl_0"
Info (12133): Instantiated megafunction "vga_controller:vga_cont|lpm_mult:Mult6_rtl_0" with the following parameter:
    Info (12134): Parameter "LPM_WIDTHA" = "18"
    Info (12134): Parameter "LPM_WIDTHB" = "18"
    Info (12134): Parameter "LPM_WIDTHP" = "36"
    Info (12134): Parameter "LPM_WIDTHR" = "36"
    Info (12134): Parameter "LPM_WIDTHS" = "1"
    Info (12134): Parameter "LPM_REPRESENTATION" = "UNSIGNED"
    Info (12134): Parameter "INPUT_A_IS_CONSTANT" = "NO"
    Info (12134): Parameter "INPUT_B_IS_CONSTANT" = "NO"
    Info (12134): Parameter "MAXIMIZE_SPEED" = "5"
    Info (12134): Parameter "DEDICATED_MULTIPLIER_CIRCUITRY" = "NO"
Info (12021): Found 1 design units, including 1 entities, in source file db/mult_ol01.v
    Info (12023): Found entity 1: mult_ol01
Info (12130): Elaborated megafunction instantiation "vga_controller:vga_cont|lpm_mult:Mult2_rtl_4"
Info (12133): Instantiated megafunction "vga_controller:vga_cont|lpm_mult:Mult2_rtl_4" with the following parameter:
    Info (12134): Parameter "LPM_WIDTHA" = "18"
    Info (12134): Parameter "LPM_WIDTHB" = "18"
    Info (12134): Parameter "LPM_WIDTHP" = "36"
    Info (12134): Parameter "LPM_WIDTHR" = "36"
    Info (12134): Parameter "LPM_WIDTHS" = "1"
    Info (12134): Parameter "LPM_REPRESENTATION" = "UNSIGNED"
    Info (12134): Parameter "INPUT_A_IS_CONSTANT" = "NO"
    Info (12134): Parameter "INPUT_B_IS_CONSTANT" = "NO"
    Info (12134): Parameter "MAXIMIZE_SPEED" = "5"
    Info (12134): Parameter "DEDICATED_MULTIPLIER_CIRCUITRY" = "NO"
Info (12130): Elaborated megafunction instantiation "vga_controller:vga_cont|lpm_mult:Mult0_rtl_8"
Info (12133): Instantiated megafunction "vga_controller:vga_cont|lpm_mult:Mult0_rtl_8" with the following parameter:
    Info (12134): Parameter "LPM_WIDTHA" = "10"
    Info (12134): Parameter "LPM_WIDTHB" = "10"
    Info (12134): Parameter "LPM_WIDTHP" = "20"
    Info (12134): Parameter "LPM_WIDTHR" = "20"
    Info (12134): Parameter "LPM_WIDTHS" = "1"
    Info (12134): Parameter "LPM_REPRESENTATION" = "UNSIGNED"
    Info (12134): Parameter "INPUT_A_IS_CONSTANT" = "NO"
    Info (12134): Parameter "INPUT_B_IS_CONSTANT" = "NO"
    Info (12134): Parameter "MAXIMIZE_SPEED" = "6"
    Info (12134): Parameter "DEDICATED_MULTIPLIER_CIRCUITRY" = "NO"
Info (12021): Found 1 design units, including 1 entities, in source file db/mult_2l01.v
    Info (12023): Found entity 1: mult_2l01
Warning (12241): 1 hierarchies have connectivity warnings - see the Connectivity Checks report folder
Info (13014): Ignored 4278 buffer(s)
    Info (13019): Ignored 4278 SOFT buffer(s)
Info (286030): Timing-Driven Synthesis is running
Info (17049): 3 registers lost all their fanouts during netlist optimizations.
Info (144001): Generated suppressed messages file C:/Users/Cansu/Desktop/fakequidditch/output_files/fakequidditch.map.smsg
Info (16010): Generating hard_block partition "hard_block:auto_generated_inst"
    Info (16011): Adding 0 node(s), including 0 DDIO, 0 PLL, 0 transceiver and 0 LCELL
Info (21057): Implemented 6696 device resources after synthesis - the final resource count might be different
    Info (21058): Implemented 9 input pins
    Info (21059): Implemented 27 output pins
    Info (21061): Implemented 6564 logic cells
    Info (21062): Implemented 96 DSP elements
Info: Quartus II 64-Bit Analysis & Synthesis was successful. 0 errors, 53 warnings
    Info: Peak virtual memory: 4813 megabytes
    Info: Processing ended: Wed May 29 14:47:53 2019
    Info: Elapsed time: 00:00:12
    Info: Total CPU time (on all processors): 00:00:12


+------------------------------------------+
; Analysis & Synthesis Suppressed Messages ;
+------------------------------------------+
The suppressed messages can be found in C:/Users/Cansu/Desktop/fakequidditch/output_files/fakequidditch.map.smsg.