S
savitha.john@gmail.com
Guest
I want to stop the simulation in between for VHDL.
Is there any construct similar to $finish( in verilog)
Is there any construct similar to $finish( in verilog)
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Not exactly.I want to stop the simulation in between for VHDL.
Is there any construct similar to $finish( in verilog)
I don't like seeing failure warnings either...Thank you all.........I am using ncsim for simulation...and that too ,a
command line interface....
I have implemented an assertion failure as Mike said....That did
work...But still ..even I don't like seeing failure warnings
when the testbench passes.......
Thanks a lot Mike
savitha.john@gmail.com wrote:
Thank you all.........I am using ncsim for simulation...and that too ,a
command line interface....
I have implemented an assertion failure as Mike said....That did
work...But still ..even I don't like seeing failure warnings
when the testbench passes.......
Thanks a lot Mike
I don't like seeing failure warnings either...
I use the following syntax to end the simulation:
assert false report "NONE. End of simulation." severity
failure;
The simulator then outputs the following:
# ** Failure: NONE. End of simulation.
Not a perfect solution but works for me...
Pete
I want to stop the simulation in between for VHDL.
Is there any construct similar to $finish( in verilog)