- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I was trying to use the Simulation Waveform Editor but I get an error when I try to run simulation.
I have attached a screenshot of the error
Could you please help me out
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Vishvas,
Remove the -novopt in your script and rerun the simulation.
Thanks,
Regards
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Vishvas,
Remove the -novopt in your script and rerun the simulation.
Thanks,
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you that issue is resolved.
Now I'm facing a new problem. I get an error saying :
Error (suppressible): (vsim-3601) Iteration limit 5000 reached at time 25 ns.
I am trying to simulate a simple RS Latch. My code is below and I have attached the screenshot of the error as well. I tried searching how to resolve this error. I read this can occur when there is an infinite loop, but I'm not sure how my code can end up in such a loop. Am I doing something wrong? I'm kinda new to Quartus as well
module part1(clk, R, S, Q);
input clk, R, S;
output Q;
wire R_g, S_g, Qa, Qb /* synthesis keep */;
and(R_g, R, clk);
and(S_g, S, clk);
nor(Qa, R_g, Qb);
nor(Qb, S_g, Qa);
assign Q = Qa;
endmodule
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page