-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMANDELBROT_HW.map.rpt
2511 lines (2337 loc) · 325 KB
/
MANDELBROT_HW.map.rpt
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
Analysis & Synthesis report for MANDELBROT_HW
Sat Jul 6 13:27:01 2024
Quartus Prime Version 23.1std.0 Build 991 11/28/2023 SC Lite 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 RAM Summary
9. Analysis & Synthesis DSP Block Usage Summary
10. Analysis & Synthesis IP Cores Summary
11. State Machine - |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|state
12. State Machine - |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|state
13. State Machine - |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|state
14. State Machine - |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|state
15. State Machine - |MANDELBROT_HW|I2C_HDMI_Config:u_I2C_HDMI_Config|mSetup_ST
16. Registers Protected by Synthesis
17. User-Specified and Inferred Latches
18. Registers Removed During Synthesis
19. Removed Registers Triggering Further Register Optimizations
20. General Register Statistics
21. Inverted Register Statistics
22. Registers Packed Into Inferred Megafunctions
23. Multiplexer Restructuring Statistics (Restructuring Performed)
24. Source assignments for mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_sync_uq1
25. Source assignments for mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_req_sync_uq1
26. Source assignments for mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k|altsyncram:ram_rtl_0|altsyncram_gdn1:auto_generated
27. Source assignments for mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k|altsyncram:ram_rtl_0|altsyncram_8gn1:auto_generated
28. Parameter Settings for User Entity Instance: pll:my_pll|pll_0002:pll_inst|altera_pll:altera_pll_i
29. Parameter Settings for User Entity Instance: I2C_HDMI_Config:u_I2C_HDMI_Config
30. Parameter Settings for User Entity Instance: mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0
31. Parameter Settings for User Entity Instance: mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb
32. Parameter Settings for User Entity Instance: mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k
33. Parameter Settings for User Entity Instance: mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k
34. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0
35. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys
36. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|fxp_add:incre_real
37. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|fxp_add:incre_imag
38. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core
39. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst
40. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_mult:mult_real_sq
41. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_mult:mult_imag_sq
42. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_mult:mult_two_real_imag
43. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_add:add_real_sq
44. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_add:sub_real_imag
45. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_add:add_real_c
46. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_add:add_imag_c
47. Parameter Settings for User Entity Instance: mandebrot_plot:u0|altera_avalon_mm_bridge:mm_bridge_0
48. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mandebrot_plot_pll_0:pll_0|altera_pll:altera_pll_i
49. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mandebrot_plot_mm_interconnect_0:mm_interconnect_0|altera_merlin_master_translator:mm_bridge_0_m0_translator
50. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mandebrot_plot_mm_interconnect_0:mm_interconnect_0|altera_merlin_slave_translator:hdmi_driver_0_s0_translator
51. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mandebrot_plot_mm_interconnect_1:mm_interconnect_1|altera_merlin_master_translator:mand_total_single_sys_0_m0_translator
52. Parameter Settings for User Entity Instance: mandebrot_plot:u0|mandebrot_plot_mm_interconnect_1:mm_interconnect_1|altera_merlin_slave_translator:mm_bridge_0_s0_translator
53. Parameter Settings for User Entity Instance: mandebrot_plot:u0|altera_reset_controller:rst_controller
54. Parameter Settings for User Entity Instance: mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_sync_uq1
55. Parameter Settings for User Entity Instance: mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_req_sync_uq1
56. Parameter Settings for Inferred Entity Instance: mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k|altsyncram:ram_rtl_0
57. Parameter Settings for Inferred Entity Instance: mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k|altsyncram:ram_rtl_0
58. altsyncram Parameter Settings by Entity Instance
59. Port Connectivity Checks: "mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_req_sync_uq1"
60. Port Connectivity Checks: "mandebrot_plot:u0|altera_reset_controller:rst_controller"
61. Port Connectivity Checks: "mandebrot_plot:u0|mandebrot_plot_mm_interconnect_1:mm_interconnect_1|altera_merlin_slave_translator:mm_bridge_0_s0_translator"
62. Port Connectivity Checks: "mandebrot_plot:u0|mandebrot_plot_mm_interconnect_1:mm_interconnect_1|altera_merlin_master_translator:mand_total_single_sys_0_m0_translator"
63. Port Connectivity Checks: "mandebrot_plot:u0|mandebrot_plot_mm_interconnect_0:mm_interconnect_0|altera_merlin_slave_translator:hdmi_driver_0_s0_translator"
64. Port Connectivity Checks: "mandebrot_plot:u0|mandebrot_plot_mm_interconnect_0:mm_interconnect_0|altera_merlin_master_translator:mm_bridge_0_m0_translator"
65. Port Connectivity Checks: "mandebrot_plot:u0|mandebrot_plot_pll_0:pll_0|altera_pll:altera_pll_i"
66. Port Connectivity Checks: "mandebrot_plot:u0|mandebrot_plot_pll_0:pll_0"
67. Port Connectivity Checks: "mandebrot_plot:u0|altera_avalon_mm_bridge:mm_bridge_0"
68. Port Connectivity Checks: "mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_add:add_imag_c"
69. Port Connectivity Checks: "mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_mult:mult_two_real_imag"
70. Port Connectivity Checks: "mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst"
71. Port Connectivity Checks: "mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core"
72. Port Connectivity Checks: "mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|fxp_add:incre_imag"
73. Port Connectivity Checks: "mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|fxp_add:incre_real"
74. Port Connectivity Checks: "mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|hdmi_tx:tx"
75. Port Connectivity Checks: "mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k"
76. Port Connectivity Checks: "mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k"
77. Port Connectivity Checks: "I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0|I2C_WRITE_WDATA:wrd"
78. Port Connectivity Checks: "I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0"
79. Port Connectivity Checks: "I2C_HDMI_Config:u_I2C_HDMI_Config"
80. Port Connectivity Checks: "pll:my_pll"
81. Post-Synthesis Netlist Statistics for Top Partition
82. Elapsed Time Per Partition
83. Analysis & Synthesis Messages
84. Analysis & Synthesis Suppressed Messages
----------------
; Legal Notice ;
----------------
Copyright (C) 2023 Intel Corporation. All rights reserved.
Your use of Intel Corporation's design tools, logic functions
and other software and tools, and any 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 Intel Program License
Subscription Agreement, the Intel Quartus Prime License Agreement,
the Intel FPGA IP License Agreement, or other applicable license
agreement, including, without limitation, that your use is for
the sole purpose of programming logic devices manufactured by
Intel and sold by Intel or its authorized distributors. Please
refer to the applicable agreement for further details, at
https://fpgasoftware.intel.com/eula.
+----------------------------------------------------------------------------------+
; Analysis & Synthesis Summary ;
+---------------------------------+------------------------------------------------+
; Analysis & Synthesis Status ; Successful - Sat Jul 6 13:27:01 2024 ;
; Quartus Prime Version ; 23.1std.0 Build 991 11/28/2023 SC Lite Edition ;
; Revision Name ; MANDELBROT_HW ;
; Top-level Entity Name ; MANDELBROT_HW ;
; Family ; Cyclone V ;
; Logic utilization (in ALMs) ; N/A ;
; Total registers ; 546 ;
; Total pins ; 73 ;
; Total virtual pins ; 0 ;
; Total block memory bits ; 2,621,440 ;
; Total DSP Blocks ; 3 ;
; Total HSSI RX PCSs ; 0 ;
; Total HSSI PMA RX Deserializers ; 0 ;
; Total HSSI TX PCSs ; 0 ;
; Total HSSI PMA TX Serializers ; 0 ;
; Total PLLs ; 2 ;
; Total DLLs ; 0 ;
+---------------------------------+------------------------------------------------+
+---------------------------------------------------------------------------------------------------------------------------+
; Analysis & Synthesis Settings ;
+---------------------------------------------------------------------------------+--------------------+--------------------+
; Option ; Setting ; Default Value ;
+---------------------------------------------------------------------------------+--------------------+--------------------+
; Device ; 5CSEBA6U23I7 ; ;
; Top-level entity name ; MANDELBROT_HW ; MANDELBROT_HW ;
; Family name ; Cyclone V ; Cyclone V ;
; Use smart compilation ; On ; Off ;
; Maximum processors allowed for parallel compilation ; 1 ; ;
; Enable parallel Assembler and 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 ;
; Intel FPGA IP Evaluation Mode ; Enable ; Enable ;
; 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 ;
; Power Optimization During Synthesis ; 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 ;
; Automatic Parallel Synthesis ; On ; On ;
; Partial Reconfiguration Bitstream ID ; Off ; Off ;
+---------------------------------------------------------------------------------+--------------------+--------------------+
Parallel compilation was disabled, but you have multiple processors available. Enable parallel compilation to reduce compilation time.
+-------------------------------------+
; Parallel Compilation ;
+----------------------------+--------+
; Processors ; Number ;
+----------------------------+--------+
; Number detected on machine ; 16 ;
; Maximum allowed ; 1 ;
+----------------------------+--------+
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Analysis & Synthesis Source Files Read ;
+------------------------------------------------------------------------+-----------------+------------------------------+----------------------------------------------------------------------------------------------------------+----------------+
; File Name with User-Entered Path ; Used in Netlist ; File Type ; File Name with Absolute Path ; Library ;
+------------------------------------------------------------------------+-----------------+------------------------------+----------------------------------------------------------------------------------------------------------+----------------+
; pll/pll.v ; yes ; User Wizard-Generated File ; D:/software/verilog/MANDELBROT_HW/pll/pll.v ; pll ;
; pll/pll/pll_0002.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/pll/pll/pll_0002.v ; pll ;
; mandebrot_plot/synthesis/mandebrot_plot.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/mandebrot_plot.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/altera_reset_controller.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/altera_reset_controller.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/altera_reset_synchronizer.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/altera_reset_synchronizer.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/mandebrot_plot_mm_interconnect_1.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/mandebrot_plot_mm_interconnect_1.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/altera_merlin_slave_translator.sv ; yes ; User SystemVerilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/altera_merlin_slave_translator.sv ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/altera_merlin_master_translator.sv ; yes ; User SystemVerilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/altera_merlin_master_translator.sv ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/mandebrot_plot_mm_interconnect_0.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/mandebrot_plot_mm_interconnect_0.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/mandebrot_plot_pll_0.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/mandebrot_plot_pll_0.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/altera_avalon_mm_bridge.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/altera_avalon_mm_bridge.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/mand_total_single_sys.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/mand_total_single_sys.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/mandelbrot_single_sys.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/mandelbrot_single_sys.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/mandelbrot_core.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/mandelbrot_core.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/mandelbrot_calc.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/mandelbrot_calc.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/fxp_mult.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/fxp_mult.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/fxp_add.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/fxp_add.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/hdmi_display_sys.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/hdmi_display_sys.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/dpram.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/dpram.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/framebuffer_dpram.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/framebuffer_dpram.v ; mandebrot_plot ;
; mandebrot_plot/synthesis/submodules/hdmi_tx.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandebrot_plot/synthesis/submodules/hdmi_tx.v ; mandebrot_plot ;
; I2C_WRITE_WDATA.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/I2C_WRITE_WDATA.v ; ;
; I2C_HDMI_Config.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/I2C_HDMI_Config.v ; ;
; I2C_Controller.v ; yes ; User Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/I2C_Controller.v ; ;
; mandelbrot_hw.v ; yes ; Auto-Found Verilog HDL File ; D:/software/verilog/MANDELBROT_HW/mandelbrot_hw.v ; ;
; altera_pll.v ; yes ; Megafunction ; e:/software/quartus-lite-23.1/fpga/quartus/libraries/megafunctions/altera_pll.v ; ;
; altsyncram.tdf ; yes ; Megafunction ; e:/software/quartus-lite-23.1/fpga/quartus/libraries/megafunctions/altsyncram.tdf ; ;
; stratix_ram_block.inc ; yes ; Megafunction ; e:/software/quartus-lite-23.1/fpga/quartus/libraries/megafunctions/stratix_ram_block.inc ; ;
; lpm_mux.inc ; yes ; Megafunction ; e:/software/quartus-lite-23.1/fpga/quartus/libraries/megafunctions/lpm_mux.inc ; ;
; lpm_decode.inc ; yes ; Megafunction ; e:/software/quartus-lite-23.1/fpga/quartus/libraries/megafunctions/lpm_decode.inc ; ;
; aglobal231.inc ; yes ; Megafunction ; e:/software/quartus-lite-23.1/fpga/quartus/libraries/megafunctions/aglobal231.inc ; ;
; a_rdenreg.inc ; yes ; Megafunction ; e:/software/quartus-lite-23.1/fpga/quartus/libraries/megafunctions/a_rdenreg.inc ; ;
; altrom.inc ; yes ; Megafunction ; e:/software/quartus-lite-23.1/fpga/quartus/libraries/megafunctions/altrom.inc ; ;
; altram.inc ; yes ; Megafunction ; e:/software/quartus-lite-23.1/fpga/quartus/libraries/megafunctions/altram.inc ; ;
; altdpram.inc ; yes ; Megafunction ; e:/software/quartus-lite-23.1/fpga/quartus/libraries/megafunctions/altdpram.inc ; ;
; db/altsyncram_gdn1.tdf ; yes ; Auto-Generated Megafunction ; D:/software/verilog/MANDELBROT_HW/db/altsyncram_gdn1.tdf ; ;
; db/decode_dla.tdf ; yes ; Auto-Generated Megafunction ; D:/software/verilog/MANDELBROT_HW/db/decode_dla.tdf ; ;
; db/mux_tfb.tdf ; yes ; Auto-Generated Megafunction ; D:/software/verilog/MANDELBROT_HW/db/mux_tfb.tdf ; ;
; db/altsyncram_8gn1.tdf ; yes ; Auto-Generated Megafunction ; D:/software/verilog/MANDELBROT_HW/db/altsyncram_8gn1.tdf ; ;
; db/decode_sma.tdf ; yes ; Auto-Generated Megafunction ; D:/software/verilog/MANDELBROT_HW/db/decode_sma.tdf ; ;
; db/mux_chb.tdf ; yes ; Auto-Generated Megafunction ; D:/software/verilog/MANDELBROT_HW/db/mux_chb.tdf ; ;
+------------------------------------------------------------------------+-----------------+------------------------------+----------------------------------------------------------------------------------------------------------+----------------+
+-----------------------------------------------------------------------------------------------------------------------------------+
; Analysis & Synthesis Resource Usage Summary ;
+---------------------------------------------+-------------------------------------------------------------------------------------+
; Resource ; Usage ;
+---------------------------------------------+-------------------------------------------------------------------------------------+
; Estimate of Logic utilization (ALMs needed) ; 495 ;
; ; ;
; Combinational ALUT usage for logic ; 755 ;
; -- 7 input functions ; 13 ;
; -- 6 input functions ; 172 ;
; -- 5 input functions ; 99 ;
; -- 4 input functions ; 110 ;
; -- <=3 input functions ; 361 ;
; ; ;
; Dedicated logic registers ; 546 ;
; ; ;
; I/O pins ; 73 ;
; Total MLAB memory bits ; 0 ;
; Total block memory bits ; 2621440 ;
; ; ;
; Total DSP Blocks ; 3 ;
; ; ;
; Total PLLs ; 2 ;
; -- PLLs ; 2 ;
; ; ;
; Maximum fan-out node ; mandebrot_plot:u0|mandebrot_plot_pll_0:pll_0|altera_pll:altera_pll_i|outclk_wire[0] ;
; Maximum fan-out ; 693 ;
; Total fan-out ; 14301 ;
; Average fan-out ; 7.97 ;
+---------------------------------------------+-------------------------------------------------------------------------------------+
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Analysis & Synthesis Resource Utilization by Entity ;
+-------------------------------------------------------+---------------------+---------------------------+-------------------+------------+------+--------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------+----------------+
; Compilation Hierarchy Node ; Combinational ALUTs ; Dedicated Logic Registers ; Block Memory Bits ; DSP Blocks ; Pins ; Virtual Pins ; Full Hierarchy Name ; Entity Name ; Library Name ;
+-------------------------------------------------------+---------------------+---------------------------+-------------------+------------+------+--------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------+----------------+
; |MANDELBROT_HW ; 755 (33) ; 546 (27) ; 2621440 ; 3 ; 73 ; 0 ; |MANDELBROT_HW ; MANDELBROT_HW ; work ;
; |I2C_HDMI_Config:u_I2C_HDMI_Config| ; 102 (50) ; 70 (42) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|I2C_HDMI_Config:u_I2C_HDMI_Config ; I2C_HDMI_Config ; work ;
; |I2C_Controller:u0| ; 52 (0) ; 28 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0 ; I2C_Controller ; work ;
; |I2C_WRITE_WDATA:wrd| ; 52 (52) ; 28 (28) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0|I2C_WRITE_WDATA:wrd ; I2C_WRITE_WDATA ; work ;
; |mandebrot_plot:u0| ; 620 (0) ; 449 (0) ; 2621440 ; 3 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0 ; mandebrot_plot ; mandebrot_plot ;
; |altera_avalon_mm_bridge:mm_bridge_0| ; 3 (3) ; 60 (60) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|altera_avalon_mm_bridge:mm_bridge_0 ; altera_avalon_mm_bridge ; mandebrot_plot ;
; |altera_reset_controller:rst_controller| ; 0 (0) ; 3 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|altera_reset_controller:rst_controller ; altera_reset_controller ; mandebrot_plot ;
; |altera_reset_synchronizer:alt_rst_sync_uq1| ; 0 (0) ; 3 (3) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_sync_uq1 ; altera_reset_synchronizer ; mandebrot_plot ;
; |hdmi_display_sys:hdmi_driver_0| ; 256 (4) ; 155 (3) ; 2621440 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0 ; hdmi_display_sys ; mandebrot_plot ;
; |framebuffer_dpram:fb| ; 178 (35) ; 75 (67) ; 2621440 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb ; framebuffer_dpram ; mandebrot_plot ;
; |dpram:mem_256k| ; 119 (0) ; 5 (0) ; 2097152 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k ; dpram ; mandebrot_plot ;
; |altsyncram:ram_rtl_0| ; 119 (0) ; 5 (0) ; 2097152 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k|altsyncram:ram_rtl_0 ; altsyncram ; work ;
; |altsyncram_8gn1:auto_generated| ; 119 (0) ; 5 (5) ; 2097152 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k|altsyncram:ram_rtl_0|altsyncram_8gn1:auto_generated ; altsyncram_8gn1 ; work ;
; |decode_sma:decode2| ; 39 (39) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k|altsyncram:ram_rtl_0|altsyncram_8gn1:auto_generated|decode_sma:decode2 ; decode_sma ; work ;
; |mux_chb:mux3| ; 80 (80) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k|altsyncram:ram_rtl_0|altsyncram_8gn1:auto_generated|mux_chb:mux3 ; mux_chb ; work ;
; |dpram:mem_64k| ; 24 (0) ; 3 (0) ; 524288 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k ; dpram ; mandebrot_plot ;
; |altsyncram:ram_rtl_0| ; 24 (0) ; 3 (0) ; 524288 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k|altsyncram:ram_rtl_0 ; altsyncram ; work ;
; |altsyncram_gdn1:auto_generated| ; 24 (0) ; 3 (3) ; 524288 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k|altsyncram:ram_rtl_0|altsyncram_gdn1:auto_generated ; altsyncram_gdn1 ; work ;
; |decode_dla:decode2| ; 8 (8) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k|altsyncram:ram_rtl_0|altsyncram_gdn1:auto_generated|decode_dla:decode2 ; decode_dla ; work ;
; |mux_tfb:mux3| ; 16 (16) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k|altsyncram:ram_rtl_0|altsyncram_gdn1:auto_generated|mux_tfb:mux3 ; mux_tfb ; work ;
; |hdmi_tx:tx| ; 74 (74) ; 77 (77) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|hdmi_tx:tx ; hdmi_tx ; mandebrot_plot ;
; |mand_total_sys:mand_total_single_sys_0| ; 361 (3) ; 231 (30) ; 0 ; 3 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0 ; mand_total_sys ; mandebrot_plot ;
; |mandelbrot_single_sys:mand_sys| ; 358 (114) ; 201 (108) ; 0 ; 3 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys ; mandelbrot_single_sys ; mandebrot_plot ;
; |fxp_add:incre_imag| ; 25 (25) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|fxp_add:incre_imag ; fxp_add ; mandebrot_plot ;
; |fxp_add:incre_real| ; 27 (27) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|fxp_add:incre_real ; fxp_add ; mandebrot_plot ;
; |mandelbrot_core:core| ; 192 (1) ; 93 (29) ; 0 ; 3 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core ; mandelbrot_core ; mandebrot_plot ;
; |mandelbrot_calc:mandelbrot_inst| ; 191 (85) ; 64 (64) ; 0 ; 3 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst ; mandelbrot_calc ; mandebrot_plot ;
; |fxp_add:add_imag_c| ; 25 (25) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_add:add_imag_c ; fxp_add ; mandebrot_plot ;
; |fxp_add:add_real_sq| ; 27 (27) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_add:add_real_sq ; fxp_add ; mandebrot_plot ;
; |fxp_add:sub_real_imag| ; 54 (54) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_add:sub_real_imag ; fxp_add ; mandebrot_plot ;
; |fxp_mult:mult_imag_sq| ; 0 (0) ; 0 (0) ; 0 ; 1 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_mult:mult_imag_sq ; fxp_mult ; mandebrot_plot ;
; |fxp_mult:mult_real_sq| ; 0 (0) ; 0 (0) ; 0 ; 1 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_mult:mult_real_sq ; fxp_mult ; mandebrot_plot ;
; |fxp_mult:mult_two_real_imag| ; 0 (0) ; 0 (0) ; 0 ; 1 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|fxp_mult:mult_two_real_imag ; fxp_mult ; mandebrot_plot ;
; |mandebrot_plot_pll_0:pll_0| ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mandebrot_plot_pll_0:pll_0 ; mandebrot_plot_pll_0 ; mandebrot_plot ;
; |altera_pll:altera_pll_i| ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|mandebrot_plot:u0|mandebrot_plot_pll_0:pll_0|altera_pll:altera_pll_i ; altera_pll ; work ;
; |pll:my_pll| ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|pll:my_pll ; pll ; pll ;
; |pll_0002:pll_inst| ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|pll:my_pll|pll_0002:pll_inst ; pll_0002 ; pll ;
; |altera_pll:altera_pll_i| ; 0 (0) ; 0 (0) ; 0 ; 0 ; 0 ; 0 ; |MANDELBROT_HW|pll:my_pll|pll_0002:pll_inst|altera_pll:altera_pll_i ; altera_pll ; 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 RAM Summary ;
+-----------------------------------------------------------------------------------------------------------------------------------------------------+------+------------------+--------------+--------------+--------------+--------------+---------+------+
; Name ; Type ; Mode ; Port A Depth ; Port A Width ; Port B Depth ; Port B Width ; Size ; MIF ;
+-----------------------------------------------------------------------------------------------------------------------------------------------------+------+------------------+--------------+--------------+--------------+--------------+---------+------+
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k|altsyncram:ram_rtl_0|altsyncram_8gn1:auto_generated|ALTSYNCRAM ; AUTO ; Simple Dual Port ; 262144 ; 8 ; 262144 ; 8 ; 2097152 ; None ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k|altsyncram:ram_rtl_0|altsyncram_gdn1:auto_generated|ALTSYNCRAM ; AUTO ; Simple Dual Port ; 65536 ; 8 ; 65536 ; 8 ; 524288 ; None ;
+-----------------------------------------------------------------------------------------------------------------------------------------------------+------+------------------+--------------+--------------+--------------+--------------+---------+------+
+----------------------------------------------+
; Analysis & Synthesis DSP Block Usage Summary ;
+-------------------------------+--------------+
; Statistic ; Number Used ;
+-------------------------------+--------------+
; Independent 27x27 ; 3 ;
; Total number of DSP blocks ; 3 ;
; ; ;
; Fixed Point Signed Multiplier ; 3 ;
+-------------------------------+--------------+
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Analysis & Synthesis IP Cores Summary ;
+--------+---------------------------------+---------+--------------+--------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------+
; Vendor ; IP Core Name ; Version ; Release Date ; License Type ; Entity Instance ; IP Include File ;
+--------+---------------------------------+---------+--------------+--------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------+
; Altera ; altera_pll ; 23.1 ; N/A ; N/A ; |MANDELBROT_HW|pll:my_pll ; pll/pll.v ;
; N/A ; Qsys ; 23.1 ; N/A ; N/A ; |MANDELBROT_HW|mandebrot_plot:u0 ; mandebrot_plot.qsys ;
; Altera ; altera_avalon_mm_bridge ; 23.1 ; N/A ; N/A ; |MANDELBROT_HW|mandebrot_plot:u0|altera_avalon_mm_bridge:mm_bridge_0 ; mandebrot_plot.qsys ;
; Altera ; altera_mm_interconnect ; 23.1 ; N/A ; N/A ; |MANDELBROT_HW|mandebrot_plot:u0|mandebrot_plot_mm_interconnect_0:mm_interconnect_0 ; mandebrot_plot.qsys ;
; Altera ; altera_merlin_slave_translator ; 23.1 ; N/A ; N/A ; |MANDELBROT_HW|mandebrot_plot:u0|mandebrot_plot_mm_interconnect_0:mm_interconnect_0|altera_merlin_slave_translator:hdmi_driver_0_s0_translator ; mandebrot_plot.qsys ;
; Altera ; altera_merlin_master_translator ; 23.1 ; N/A ; N/A ; |MANDELBROT_HW|mandebrot_plot:u0|mandebrot_plot_mm_interconnect_0:mm_interconnect_0|altera_merlin_master_translator:mm_bridge_0_m0_translator ; mandebrot_plot.qsys ;
; Altera ; altera_mm_interconnect ; 23.1 ; N/A ; N/A ; |MANDELBROT_HW|mandebrot_plot:u0|mandebrot_plot_mm_interconnect_1:mm_interconnect_1 ; mandebrot_plot.qsys ;
; Altera ; altera_merlin_master_translator ; 23.1 ; N/A ; N/A ; |MANDELBROT_HW|mandebrot_plot:u0|mandebrot_plot_mm_interconnect_1:mm_interconnect_1|altera_merlin_master_translator:mand_total_single_sys_0_m0_translator ; mandebrot_plot.qsys ;
; Altera ; altera_merlin_slave_translator ; 23.1 ; N/A ; N/A ; |MANDELBROT_HW|mandebrot_plot:u0|mandebrot_plot_mm_interconnect_1:mm_interconnect_1|altera_merlin_slave_translator:mm_bridge_0_s0_translator ; mandebrot_plot.qsys ;
; Altera ; altera_pll ; 23.1 ; N/A ; N/A ; |MANDELBROT_HW|mandebrot_plot:u0|mandebrot_plot_pll_0:pll_0 ; mandebrot_plot.qsys ;
; Altera ; altera_reset_controller ; 23.1 ; N/A ; N/A ; |MANDELBROT_HW|mandebrot_plot:u0|altera_reset_controller:rst_controller ; mandebrot_plot.qsys ;
+--------+---------------------------------+---------+--------------+--------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------+
Encoding Type: One-Hot
+-----------------------------------------------------------------------------------------------+
; State Machine - |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|state ;
+------------+----------------------------------------------------------------------------------+
; Name ; state.CALC ;
+------------+----------------------------------------------------------------------------------+
; state.IDLE ; 0 ;
; state.CALC ; 1 ;
+------------+----------------------------------------------------------------------------------+
Encoding Type: One-Hot
+------------------------------------------------------------------------------------------------------------------------------+
; State Machine - |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|state ;
+-------------+-----------+------------+-------------+-------------------------------------------------------------------------+
; Name ; state.FIN ; state.CALC ; state.START ; state.IDLE ;
+-------------+-----------+------------+-------------+-------------------------------------------------------------------------+
; state.IDLE ; 0 ; 0 ; 0 ; 0 ;
; state.START ; 0 ; 0 ; 1 ; 1 ;
; state.CALC ; 0 ; 1 ; 0 ; 1 ;
; state.FIN ; 1 ; 0 ; 0 ; 1 ;
+-------------+-----------+------------+-------------+-------------------------------------------------------------------------+
Encoding Type: One-Hot
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; State Machine - |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|state ;
+------------+------------+-----------+---------------------------------------------------------------------------------------------------------------------------------------------+
; Name ; state.IDLE ; state.FIN ; state.CALC ;
+------------+------------+-----------+---------------------------------------------------------------------------------------------------------------------------------------------+
; state.IDLE ; 0 ; 0 ; 0 ;
; state.CALC ; 1 ; 0 ; 1 ;
; state.FIN ; 1 ; 1 ; 0 ;
+------------+------------+-----------+---------------------------------------------------------------------------------------------------------------------------------------------+
Encoding Type: One-Hot
+---------------------------------------------------------------------------------------+
; State Machine - |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|state ;
+------------+------------+------------+------------------------------------------------+
; Name ; state.IDLE ; state.DONE ; state.WAIT ;
+------------+------------+------------+------------------------------------------------+
; state.IDLE ; 0 ; 0 ; 0 ;
; state.WAIT ; 1 ; 0 ; 1 ;
; state.DONE ; 1 ; 1 ; 0 ;
+------------+------------+------------+------------------------------------------------+
Encoding Type: One-Hot
+----------------------------------------------------------------------------+
; State Machine - |MANDELBROT_HW|I2C_HDMI_Config:u_I2C_HDMI_Config|mSetup_ST ;
+----------------+----------------+----------------+-------------------------+
; Name ; mSetup_ST.0000 ; mSetup_ST.0010 ; mSetup_ST.0001 ;
+----------------+----------------+----------------+-------------------------+
; mSetup_ST.0000 ; 0 ; 0 ; 0 ;
; mSetup_ST.0001 ; 1 ; 0 ; 1 ;
; mSetup_ST.0010 ; 1 ; 1 ; 0 ;
+----------------+----------------+----------------+-------------------------+
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Registers Protected by Synthesis ;
+--------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------+--------------------------------------------+
; Register Name ; Protected by Synthesis Attribute or Preserve Register Assignment ; Not to be Touched by Netlist Optimizations ;
+--------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------+--------------------------------------------+
; mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_sync_uq1|altera_reset_synchronizer_int_chain[0] ; yes ; yes ;
; mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_sync_uq1|altera_reset_synchronizer_int_chain[1] ; yes ; yes ;
; Total number of protected registers is 2 ; ; ;
+--------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------+--------------------------------------------+
+---------------------------------------------------------------------------------------------------------------------------------------------------+
; User-Specified and Inferred Latches ;
+------------------------------------------------------------+-------------------------------------------------------------+------------------------+
; Latch Name ; Latch Enable Signal ; Free of Timing Hazards ;
+------------------------------------------------------------+-------------------------------------------------------------+------------------------+
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|hps_write ; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|state.DONE ; yes ;
; Number of user-specified and inferred latches = 1 ; ; ;
+------------------------------------------------------------+-------------------------------------------------------------+------------------------+
Note: All latches listed above may not be present at the end of synthesis due to various synthesis optimizations.
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Registers Removed During Synthesis ;
+--------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+
; Register name ; Reason for Removal ;
+--------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+
; mandebrot_plot:u0|altera_avalon_mm_bridge:mm_bridge_0|wr_reg_read ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|altera_avalon_mm_bridge:mm_bridge_0|cmd_read ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_end[0] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_end[1] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_end[2..8] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_end[9] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_end[10,11] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_start[0] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_start[1] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_start[2..4] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_start[5] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_start[6..11] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_sync[0] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_sync[1..11] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_total[0,1] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_total[2,3] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_total[4..8] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_total[9] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|v_total[10,11] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_end[0] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_end[1] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_end[2,3] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_end[4..7] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_end[8,9] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_end[10,11] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_start[0] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_start[1] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_start[2,3] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_start[4..6] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_start[7] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_start[8..11] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_sync[0..4] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_sync[5] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_sync[6] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_sync[7..11] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_total[0..4] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_total[5..7] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_total[8,9] ; Stuck at VCC due to stuck port data_in ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|h_total[10,11] ; Stuck at GND due to stuck port data_in ;
; I2C_HDMI_Config:u_I2C_HDMI_Config|mI2C_DATA[23] ; Stuck at GND due to stuck port data_in ;
; I2C_HDMI_Config:u_I2C_HDMI_Config|mI2C_DATA[20..22] ; Stuck at VCC due to stuck port data_in ;
; I2C_HDMI_Config:u_I2C_HDMI_Config|mI2C_DATA[18,19] ; Stuck at GND due to stuck port data_in ;
; I2C_HDMI_Config:u_I2C_HDMI_Config|mI2C_DATA[17] ; Stuck at VCC due to stuck port data_in ;
; I2C_HDMI_Config:u_I2C_HDMI_Config|mI2C_DATA[16] ; Stuck at GND due to stuck port data_in ;
; I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0|I2C_WRITE_WDATA:wrd|ST[6,7] ; Merged with I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0|I2C_WRITE_WDATA:wrd|ST[5] ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_im[1] ; Merged with mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_im[0] ;
; I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0|I2C_WRITE_WDATA:wrd|BYTE[3..7] ; Merged with I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0|I2C_WRITE_WDATA:wrd|BYTE[2] ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_im[0] ; Stuck at GND due to stuck port data_in ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|z_imag[0] ; Stuck at GND due to stuck port data_in ;
; I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0|I2C_WRITE_WDATA:wrd|BYTE[2] ; Stuck at GND due to stuck port data_in ;
; I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0|I2C_WRITE_WDATA:wrd|ST[5] ; Stuck at GND due to stuck port clock_enable ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|state~7 ; Lost fanout ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|state~8 ; Lost fanout ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|state~9 ; Lost fanout ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|state~6 ; Lost fanout ;
; I2C_HDMI_Config:u_I2C_HDMI_Config|mSetup_ST~9 ; Lost fanout ;
; I2C_HDMI_Config:u_I2C_HDMI_Config|mSetup_ST~10 ; Lost fanout ;
; I2C_HDMI_Config:u_I2C_HDMI_Config|LUT_INDEX[5] ; Stuck at GND due to stuck port data_in ;
; Total Number of Removed Registers = 125 ; ;
+--------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Removed Registers Triggering Further Register Optimizations ;
+-------------------------------------------------------------------------------------------------+---------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
; Register name ; Reason for Removal ; Registers Removed due to This Register ;
+-------------------------------------------------------------------------------------------------+---------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_im[0] ; Stuck at GND ; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|mandelbrot_core:core|mandelbrot_calc:mandelbrot_inst|z_imag[0] ;
; ; due to stuck port data_in ; ;
+-------------------------------------------------------------------------------------------------+---------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
+------------------------------------------------------+
; General Register Statistics ;
+----------------------------------------------+-------+
; Statistic ; Value ;
+----------------------------------------------+-------+
; Total registers ; 546 ;
; Number of registers using Synchronous Clear ; 161 ;
; Number of registers using Synchronous Load ; 37 ;
; Number of registers using Asynchronous Clear ; 375 ;
; Number of registers using Asynchronous Load ; 0 ;
; Number of registers using Clock Enable ; 245 ;
; Number of registers using Preset ; 0 ;
+----------------------------------------------+-------+
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
; Inverted Register Statistics ;
+---------------------------------------------------------------------------------------------------------------------------------------------+---------+
; Inverted Register ; Fan out ;
+---------------------------------------------------------------------------------------------------------------------------------------------+---------+
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|hdmi_tx:tx|vga_hs ; 1 ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|hdmi_tx:tx|vga_vs ; 1 ;
; mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_sync_uq1|altera_reset_synchronizer_int_chain_out ; 335 ;
; mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_sync_uq1|altera_reset_synchronizer_int_chain[0] ; 1 ;
; mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_sync_uq1|altera_reset_synchronizer_int_chain[1] ; 1 ;
; mandebrot_plot:u0|altera_avalon_mm_bridge:mm_bridge_0|use_reg ; 30 ;
; mandebrot_plot:u0|altera_avalon_mm_bridge:mm_bridge_0|wr_reg_waitrequest ; 2 ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_re[24] ; 2 ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_re[25] ; 2 ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_re[26] ; 2 ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_im[23] ; 2 ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_im[24] ; 2 ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_im[25] ; 2 ;
; mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_im[26] ; 2 ;
; Total number of inverted registers = 14 ; ;
+---------------------------------------------------------------------------------------------------------------------------------------------+---------+
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Registers Packed Into Inferred Megafunctions ;
+----------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------+------+
; Register Name ; Megafunction ; Type ;
+----------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------+------+
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k|rdata_b[0..7] ; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k|ram_rtl_0 ; RAM ;
; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k|rdata_b[0..7] ; mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k|ram_rtl_0 ; RAM ;
+----------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------+------+
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Multiplexer Restructuring Statistics (Restructuring Performed) ;
+--------------------+-----------+---------------+----------------------+------------------------+------------+-----------------------------------------------------------------------------------------------------------------+
; Multiplexer Inputs ; Bus Width ; Baseline Area ; Area if Restructured ; Saving if Restructured ; Registered ; Example Multiplexer Output ;
+--------------------+-----------+---------------+----------------------+------------------------+------------+-----------------------------------------------------------------------------------------------------------------+
; 3:1 ; 6 bits ; 12 LEs ; 6 LEs ; 6 LEs ; Yes ; |MANDELBROT_HW|I2C_HDMI_Config:u_I2C_HDMI_Config|LUT_INDEX[0] ;
; 3:1 ; 8 bits ; 16 LEs ; 16 LEs ; 0 LEs ; Yes ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|hdmi_tx:tx|vga_b[7] ;
; 3:1 ; 8 bits ; 16 LEs ; 0 LEs ; 16 LEs ; Yes ; |MANDELBROT_HW|mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|rgb_data[3] ;
; 65:1 ; 8 bits ; 344 LEs ; 0 LEs ; 344 LEs ; Yes ; |MANDELBROT_HW|I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0|I2C_WRITE_WDATA:wrd|CNT[7] ;
; 66:1 ; 5 bits ; 220 LEs ; 125 LEs ; 95 LEs ; Yes ; |MANDELBROT_HW|I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0|I2C_WRITE_WDATA:wrd|ST[4] ;
; 67:1 ; 3 bits ; 132 LEs ; 6 LEs ; 126 LEs ; Yes ; |MANDELBROT_HW|I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0|I2C_WRITE_WDATA:wrd|BYTE[2] ;
; 37:1 ; 8 bits ; 192 LEs ; 16 LEs ; 176 LEs ; Yes ; |MANDELBROT_HW|I2C_HDMI_Config:u_I2C_HDMI_Config|I2C_Controller:u0|I2C_WRITE_WDATA:wrd|A[8] ;
; 4:1 ; 4 bits ; 8 LEs ; 4 LEs ; 4 LEs ; Yes ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_im[23] ;
; 5:1 ; 3 bits ; 9 LEs ; 6 LEs ; 3 LEs ; Yes ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|c_re[24] ;
; 3:1 ; 2 bits ; 4 LEs ; 4 LEs ; 0 LEs ; No ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|state ;
; 3:1 ; 34 bits ; 68 LEs ; 68 LEs ; 0 LEs ; No ; |MANDELBROT_HW|mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|pix_x ;
+--------------------+-----------+---------------+----------------------+------------------------+------------+-----------------------------------------------------------------------------------------------------------------+
+----------------------------------------------------------------------------------------------------------------------------+
; Source assignments for mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_sync_uq1 ;
+-------------------+-------+------+-----------------------------------------------------------------------------------------+
; Assignment ; Value ; From ; To ;
+-------------------+-------+------+-----------------------------------------------------------------------------------------+
; PRESERVE_REGISTER ; on ; - ; altera_reset_synchronizer_int_chain[1] ;
; PRESERVE_REGISTER ; on ; - ; altera_reset_synchronizer_int_chain[0] ;
+-------------------+-------+------+-----------------------------------------------------------------------------------------+
+--------------------------------------------------------------------------------------------------------------------------------+
; Source assignments for mandebrot_plot:u0|altera_reset_controller:rst_controller|altera_reset_synchronizer:alt_rst_req_sync_uq1 ;
+-------------------+-------+------+---------------------------------------------------------------------------------------------+
; Assignment ; Value ; From ; To ;
+-------------------+-------+------+---------------------------------------------------------------------------------------------+
; PRESERVE_REGISTER ; on ; - ; altera_reset_synchronizer_int_chain[0] ;
; PRESERVE_REGISTER ; on ; - ; altera_reset_synchronizer_int_chain[1] ;
+-------------------+-------+------+---------------------------------------------------------------------------------------------+
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Source assignments for mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k|altsyncram:ram_rtl_0|altsyncram_gdn1:auto_generated ;
+---------------------------------+--------------------+------+--------------------------------------------------------------------------------------------------+
; Assignment ; Value ; From ; To ;
+---------------------------------+--------------------+------+--------------------------------------------------------------------------------------------------+
; OPTIMIZE_POWER_DURING_SYNTHESIS ; NORMAL_COMPILATION ; - ; - ;
+---------------------------------+--------------------+------+--------------------------------------------------------------------------------------------------+
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Source assignments for mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k|altsyncram:ram_rtl_0|altsyncram_8gn1:auto_generated ;
+---------------------------------+--------------------+------+---------------------------------------------------------------------------------------------------+
; Assignment ; Value ; From ; To ;
+---------------------------------+--------------------+------+---------------------------------------------------------------------------------------------------+
; OPTIMIZE_POWER_DURING_SYNTHESIS ; NORMAL_COMPILATION ; - ; - ;
+---------------------------------+--------------------+------+---------------------------------------------------------------------------------------------------+
+---------------------------------------------------------------------------------------------------+
; Parameter Settings for User Entity Instance: pll:my_pll|pll_0002:pll_inst|altera_pll:altera_pll_i ;
+--------------------------------------+------------------------+-----------------------------------+
; Parameter Name ; Value ; Type ;
+--------------------------------------+------------------------+-----------------------------------+
; reference_clock_frequency ; 50.0 MHz ; String ;
; fractional_vco_multiplier ; false ; String ;
; pll_type ; General ; String ;
; pll_subtype ; General ; String ;
; number_of_clocks ; 2 ; Signed Integer ;
; operation_mode ; direct ; String ;
; deserialization_factor ; 4 ; Signed Integer ;
; data_rate ; 0 ; Signed Integer ;
; sim_additional_refclk_cycles_to_lock ; 0 ; Signed Integer ;
; output_clock_frequency0 ; 25.175644 MHz ; String ;
; phase_shift0 ; 0 ps ; String ;
; duty_cycle0 ; 50 ; Signed Integer ;
; output_clock_frequency1 ; 102.380952 MHz ; String ;
; phase_shift1 ; 0 ps ; String ;
; duty_cycle1 ; 50 ; Signed Integer ;
; output_clock_frequency2 ; 0 MHz ; String ;
; phase_shift2 ; 0 ps ; String ;
; duty_cycle2 ; 50 ; Signed Integer ;
; output_clock_frequency3 ; 0 MHz ; String ;
; phase_shift3 ; 0 ps ; String ;
; duty_cycle3 ; 50 ; Signed Integer ;
; output_clock_frequency4 ; 0 MHz ; String ;
; phase_shift4 ; 0 ps ; String ;
; duty_cycle4 ; 50 ; Signed Integer ;
; output_clock_frequency5 ; 0 MHz ; String ;
; phase_shift5 ; 0 ps ; String ;
; duty_cycle5 ; 50 ; Signed Integer ;
; output_clock_frequency6 ; 0 MHz ; String ;
; phase_shift6 ; 0 ps ; String ;
; duty_cycle6 ; 50 ; Signed Integer ;
; output_clock_frequency7 ; 0 MHz ; String ;
; phase_shift7 ; 0 ps ; String ;
; duty_cycle7 ; 50 ; Signed Integer ;
; output_clock_frequency8 ; 0 MHz ; String ;
; phase_shift8 ; 0 ps ; String ;
; duty_cycle8 ; 50 ; Signed Integer ;
; output_clock_frequency9 ; 0 MHz ; String ;
; phase_shift9 ; 0 ps ; String ;
; duty_cycle9 ; 50 ; Signed Integer ;
; output_clock_frequency10 ; 0 MHz ; String ;
; phase_shift10 ; 0 ps ; String ;
; duty_cycle10 ; 50 ; Signed Integer ;
; output_clock_frequency11 ; 0 MHz ; String ;
; phase_shift11 ; 0 ps ; String ;
; duty_cycle11 ; 50 ; Signed Integer ;
; output_clock_frequency12 ; 0 MHz ; String ;
; phase_shift12 ; 0 ps ; String ;
; duty_cycle12 ; 50 ; Signed Integer ;
; output_clock_frequency13 ; 0 MHz ; String ;
; phase_shift13 ; 0 ps ; String ;
; duty_cycle13 ; 50 ; Signed Integer ;
; output_clock_frequency14 ; 0 MHz ; String ;
; phase_shift14 ; 0 ps ; String ;
; duty_cycle14 ; 50 ; Signed Integer ;
; output_clock_frequency15 ; 0 MHz ; String ;
; phase_shift15 ; 0 ps ; String ;
; duty_cycle15 ; 50 ; Signed Integer ;
; output_clock_frequency16 ; 0 MHz ; String ;
; phase_shift16 ; 0 ps ; String ;
; duty_cycle16 ; 50 ; Signed Integer ;
; output_clock_frequency17 ; 0 MHz ; String ;
; phase_shift17 ; 0 ps ; String ;
; duty_cycle17 ; 50 ; Signed Integer ;
; clock_name_0 ; ; String ;
; clock_name_1 ; ; String ;
; clock_name_2 ; ; String ;
; clock_name_3 ; ; String ;
; clock_name_4 ; ; String ;
; clock_name_5 ; ; String ;
; clock_name_6 ; ; String ;
; clock_name_7 ; ; String ;
; clock_name_8 ; ; String ;
; clock_name_global_0 ; false ; String ;
; clock_name_global_1 ; false ; String ;
; clock_name_global_2 ; false ; String ;
; clock_name_global_3 ; false ; String ;
; clock_name_global_4 ; false ; String ;
; clock_name_global_5 ; false ; String ;
; clock_name_global_6 ; false ; String ;
; clock_name_global_7 ; false ; String ;
; clock_name_global_8 ; false ; String ;
; m_cnt_hi_div ; 1 ; Signed Integer ;
; m_cnt_lo_div ; 1 ; Signed Integer ;
; m_cnt_bypass_en ; false ; String ;
; m_cnt_odd_div_duty_en ; false ; String ;
; n_cnt_hi_div ; 1 ; Signed Integer ;
; n_cnt_lo_div ; 1 ; Signed Integer ;
; n_cnt_bypass_en ; false ; String ;
; n_cnt_odd_div_duty_en ; false ; String ;
; c_cnt_hi_div0 ; 1 ; Signed Integer ;
; c_cnt_lo_div0 ; 1 ; Signed Integer ;
; c_cnt_bypass_en0 ; false ; String ;
; c_cnt_in_src0 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en0 ; false ; String ;
; c_cnt_prst0 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst0 ; 0 ; Signed Integer ;
; c_cnt_hi_div1 ; 1 ; Signed Integer ;
; c_cnt_lo_div1 ; 1 ; Signed Integer ;
; c_cnt_bypass_en1 ; false ; String ;
; c_cnt_in_src1 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en1 ; false ; String ;
; c_cnt_prst1 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst1 ; 0 ; Signed Integer ;
; c_cnt_hi_div2 ; 1 ; Signed Integer ;
; c_cnt_lo_div2 ; 1 ; Signed Integer ;
; c_cnt_bypass_en2 ; false ; String ;
; c_cnt_in_src2 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en2 ; false ; String ;
; c_cnt_prst2 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst2 ; 0 ; Signed Integer ;
; c_cnt_hi_div3 ; 1 ; Signed Integer ;
; c_cnt_lo_div3 ; 1 ; Signed Integer ;
; c_cnt_bypass_en3 ; false ; String ;
; c_cnt_in_src3 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en3 ; false ; String ;
; c_cnt_prst3 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst3 ; 0 ; Signed Integer ;
; c_cnt_hi_div4 ; 1 ; Signed Integer ;
; c_cnt_lo_div4 ; 1 ; Signed Integer ;
; c_cnt_bypass_en4 ; false ; String ;
; c_cnt_in_src4 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en4 ; false ; String ;
; c_cnt_prst4 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst4 ; 0 ; Signed Integer ;
; c_cnt_hi_div5 ; 1 ; Signed Integer ;
; c_cnt_lo_div5 ; 1 ; Signed Integer ;
; c_cnt_bypass_en5 ; false ; String ;
; c_cnt_in_src5 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en5 ; false ; String ;
; c_cnt_prst5 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst5 ; 0 ; Signed Integer ;
; c_cnt_hi_div6 ; 1 ; Signed Integer ;
; c_cnt_lo_div6 ; 1 ; Signed Integer ;
; c_cnt_bypass_en6 ; false ; String ;
; c_cnt_in_src6 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en6 ; false ; String ;
; c_cnt_prst6 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst6 ; 0 ; Signed Integer ;
; c_cnt_hi_div7 ; 1 ; Signed Integer ;
; c_cnt_lo_div7 ; 1 ; Signed Integer ;
; c_cnt_bypass_en7 ; false ; String ;
; c_cnt_in_src7 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en7 ; false ; String ;
; c_cnt_prst7 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst7 ; 0 ; Signed Integer ;
; c_cnt_hi_div8 ; 1 ; Signed Integer ;
; c_cnt_lo_div8 ; 1 ; Signed Integer ;
; c_cnt_bypass_en8 ; false ; String ;
; c_cnt_in_src8 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en8 ; false ; String ;
; c_cnt_prst8 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst8 ; 0 ; Signed Integer ;
; c_cnt_hi_div9 ; 1 ; Signed Integer ;
; c_cnt_lo_div9 ; 1 ; Signed Integer ;
; c_cnt_bypass_en9 ; false ; String ;
; c_cnt_in_src9 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en9 ; false ; String ;
; c_cnt_prst9 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst9 ; 0 ; Signed Integer ;
; c_cnt_hi_div10 ; 1 ; Signed Integer ;
; c_cnt_lo_div10 ; 1 ; Signed Integer ;
; c_cnt_bypass_en10 ; false ; String ;
; c_cnt_in_src10 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en10 ; false ; String ;
; c_cnt_prst10 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst10 ; 0 ; Signed Integer ;
; c_cnt_hi_div11 ; 1 ; Signed Integer ;
; c_cnt_lo_div11 ; 1 ; Signed Integer ;
; c_cnt_bypass_en11 ; false ; String ;
; c_cnt_in_src11 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en11 ; false ; String ;
; c_cnt_prst11 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst11 ; 0 ; Signed Integer ;
; c_cnt_hi_div12 ; 1 ; Signed Integer ;
; c_cnt_lo_div12 ; 1 ; Signed Integer ;
; c_cnt_bypass_en12 ; false ; String ;
; c_cnt_in_src12 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en12 ; false ; String ;
; c_cnt_prst12 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst12 ; 0 ; Signed Integer ;
; c_cnt_hi_div13 ; 1 ; Signed Integer ;
; c_cnt_lo_div13 ; 1 ; Signed Integer ;
; c_cnt_bypass_en13 ; false ; String ;
; c_cnt_in_src13 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en13 ; false ; String ;
; c_cnt_prst13 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst13 ; 0 ; Signed Integer ;
; c_cnt_hi_div14 ; 1 ; Signed Integer ;
; c_cnt_lo_div14 ; 1 ; Signed Integer ;
; c_cnt_bypass_en14 ; false ; String ;
; c_cnt_in_src14 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en14 ; false ; String ;
; c_cnt_prst14 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst14 ; 0 ; Signed Integer ;
; c_cnt_hi_div15 ; 1 ; Signed Integer ;
; c_cnt_lo_div15 ; 1 ; Signed Integer ;
; c_cnt_bypass_en15 ; false ; String ;
; c_cnt_in_src15 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en15 ; false ; String ;
; c_cnt_prst15 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst15 ; 0 ; Signed Integer ;
; c_cnt_hi_div16 ; 1 ; Signed Integer ;
; c_cnt_lo_div16 ; 1 ; Signed Integer ;
; c_cnt_bypass_en16 ; false ; String ;
; c_cnt_in_src16 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en16 ; false ; String ;
; c_cnt_prst16 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst16 ; 0 ; Signed Integer ;
; c_cnt_hi_div17 ; 1 ; Signed Integer ;
; c_cnt_lo_div17 ; 1 ; Signed Integer ;
; c_cnt_bypass_en17 ; false ; String ;
; c_cnt_in_src17 ; ph_mux_clk ; String ;
; c_cnt_odd_div_duty_en17 ; false ; String ;
; c_cnt_prst17 ; 1 ; Signed Integer ;
; c_cnt_ph_mux_prst17 ; 0 ; Signed Integer ;
; pll_vco_div ; 1 ; Signed Integer ;
; pll_slf_rst ; false ; String ;
; pll_bw_sel ; low ; String ;
; pll_output_clk_frequency ; 0 MHz ; String ;
; pll_cp_current ; 0 ; Signed Integer ;
; pll_bwctrl ; 0 ; Signed Integer ;
; pll_fractional_division ; 1 ; Signed Integer ;
; pll_fractional_cout ; 24 ; Signed Integer ;
; pll_dsm_out_sel ; 1st_order ; String ;
; mimic_fbclk_type ; gclk ; String ;
; pll_fbclk_mux_1 ; glb ; String ;
; pll_fbclk_mux_2 ; fb_1 ; String ;
; pll_m_cnt_in_src ; ph_mux_clk ; String ;
; pll_vcoph_div ; 1 ; Signed Integer ;
; refclk1_frequency ; 0 MHz ; String ;
; pll_clkin_0_src ; clk_0 ; String ;
; pll_clkin_1_src ; clk_0 ; String ;
; pll_clk_loss_sw_en ; false ; String ;
; pll_auto_clk_sw_en ; false ; String ;
; pll_manu_clk_sw_en ; false ; String ;
; pll_clk_sw_dly ; 0 ; Signed Integer ;
; pll_extclk_0_cnt_src ; pll_extclk_cnt_src_vss ; String ;
; pll_extclk_1_cnt_src ; pll_extclk_cnt_src_vss ; String ;
+--------------------------------------+------------------------+-----------------------------------+
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: I2C_HDMI_Config:u_I2C_HDMI_Config ;
+----------------+----------+----------------------------------------------------+
; Parameter Name ; Value ; Type ;
+----------------+----------+----------------------------------------------------+
; CLK_Freq ; 50000000 ; Signed Integer ;
; I2C_Freq ; 20000 ; Signed Integer ;
; LUT_SIZE ; 31 ; 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 User Entity Instance: mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0 ;
+----------------+-------+----------------------------------------------------------------------+
; Parameter Name ; Value ; Type ;
+----------------+-------+----------------------------------------------------------------------+
; WIDTH ; 8 ; 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 User Entity Instance: mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb ;
+----------------+-------+-------------------------------------------------------------------------------------------+
; Parameter Name ; Value ; Type ;
+----------------+-------+-------------------------------------------------------------------------------------------+
; WIDTH ; 8 ; Signed Integer ;
; ver_x ; 640 ; Signed Integer ;
; hor_y ; 480 ; 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 User Entity Instance: mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_256k ;
+----------------+-------+----------------------------------------------------------------------------------------------------------+
; Parameter Name ; Value ; Type ;
+----------------+-------+----------------------------------------------------------------------------------------------------------+
; DATA_WIDTH ; 8 ; Signed Integer ;
; ADDR_WIDTH ; 18 ; 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 User Entity Instance: mandebrot_plot:u0|hdmi_display_sys:hdmi_driver_0|framebuffer_dpram:fb|dpram:mem_64k ;
+----------------+-------+---------------------------------------------------------------------------------------------------------+
; Parameter Name ; Value ; Type ;
+----------------+-------+---------------------------------------------------------------------------------------------------------+
; DATA_WIDTH ; 8 ; Signed Integer ;
; ADDR_WIDTH ; 16 ; 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 User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0 ;
+----------------+-------+------------------------------------------------------------------------------+
; Parameter Name ; Value ; Type ;
+----------------+-------+------------------------------------------------------------------------------+
; WIDTH ; 32 ; 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 User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys ;
+----------------+-------+-------------------------------------------------------------------------------------------------------------+
; Parameter Name ; Value ; Type ;
+----------------+-------+-------------------------------------------------------------------------------------------------------------+
; WIDTH ; 27 ; Signed Integer ;
; FBITS ; 23 ; Signed Integer ;
; MAX_H ; 400 ; Signed Integer ;
; MAX_V ; 300 ; 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 User Entity Instance: mandebrot_plot:u0|mand_total_sys:mand_total_single_sys_0|mandelbrot_single_sys:mand_sys|fxp_add:incre_real ;
+----------------+-------+--------------------------------------------------------------------------------------------------------------------------------+
; Parameter Name ; Value ; Type ;