Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] VHDL Test Bench - Beginner

Status
Not open for further replies.

kemalkemal

Member level 1
Joined
Jan 27, 2013
Messages
38
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,288
Activity points
1,672
I use quartus ii and model sim altera se.
When i write a test bench file it consists of some code lines related to timing. Than when i compile it and run simulation does this substitute a timing simulation ?
Or do i have to involve .sdo file into the simulation in all conditions for a timing simulation?

For example what kind of simulation is there in this video
Timing or functional ?
This sim issue and test benches confuses me a lot. i appreciate it if you help me to clear my mind.
 

This is not timing simulation. Timing simulation is when your actual gate,net and wire delays are realized in hardware. So you will need a placed and routed netlist with something like a delay file to mimic that. Moreover the delays you are showing us are in the testbench...
 

In your case you are doing a functional simulation.

Timing delays in a testbench are usually put in by people who get confused when the signals transition in a functional simulation at the same time the clock does. This is done a lot by inexperienced engineers that don't understand the simulation delta cycle and their simulation stimulus isn't working correctly due to delta time problems in the testbench code. I've seen this type of problem caused by badly written clock generation and distribution in the testbench.

The other times I've seen this done in a testbench is to emulate real delays that a bus functional model requires to accurately represent a hardware device.
 

is there a link that you could send for timing simulation and test bench.
 

I made it with the help of this command line in modelsim. vsim -sdftyp /tbreg4/dut=reg4_vhd.sdo tbreg4 (dut is the name of component in the test benc file)
But note that at my first attempt i receive lots of vsim-SDF-3250 errors. I have overcome it by using component instantiation instead of entity instantiation in the test bench file.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top