Altera_Forum
Honored Contributor
7 years agoQuartus show only dumber's incomplete view
Hi,
It feels like being treated as a dumb by Quartus. For example, we have a very simple add one counter, `timescale 1ns / 1ns module test_grammar (count, clk, reset); output [1:0] count; input clk, reset; reg [1:0] count; initial begin count=0; end always @ (negedge clk or posedge reset) count<=count+1; endmodule And the clk and reset edges drives the FLIP-FLOPS. In Cadence encounter, we get a full down to flip-flop view; but here as in attached image, clk/reset is not shown connected to anything, and it always use thick bus lines to hide group of signals without allowing you to expand it. To show how arrogant Quartus is I put both RTL and tech mapping view screenshot here. https://alteraforum.com/forum/attachment.php?attachmentid=15064&stc=1 Could you advise me how to- Show full connection, i.e., give me clk and reset’s connection to registers.
- To break those obscuring thick buses, give each single wire connection
- The primitive shown in the tech-map view, is akin to the final LUT in CPLD, which is understandable since it eases further fitting. Does Quartus allow changing the primitive to most-basic FLIP-FLOPS?