- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I'm new with the quartus software and now i'm fighting with a very simple problem.
I need to create some clocks skews adding some ports as little delays, but i'm not able to to avoid the optimizer remove all my addictive ports , so i'm not able to add any timing shifts.
How can I control that? i tried unckeck all optimizations available, but always all wires and registers are removed.
For example to be able to use this module:
// ****************
module my_delay_line(s_in ,s_out);
parameter n=20;
genvar i;
input s_in;
output s_out;
wire [n-1:0] delay;
assign s_out=delay[n-1];
assign delay[0] = ~s_in;
generate
for (i=0; i<n-1; i=i+1)
begin: generate_delay
assign delay [i+1] = ~delay [i ];
end
endgenerate
endmodule
// ********************
Thank you.
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How you tried to use noprune to preserve the register? or turn off the optimization setting in Quartus (will affect timing) ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
We do not receive any response from you to the previous answer that I have provided, thus I will put this case to close pending. Please post a response in the next 15 days to allow me to continue to support you. After 15 days, this thread will be transitioned to community support. The community users will be able to help you with your follow-up questions.
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page