Question:
what is simulation in VHDL?
?
2011-11-15 21:49:58 UTC
what is simulation in VHDL?
Three answers:
SUDHAKAR Kuruvada
2011-11-17 21:57:01 UTC
VHDL (VHSIC hardware description language) is a hardware description language used in electronic design automation to describe digital and mixed-signal systems such as field-programmable gate arrays and integrated circuits.



VHDL has file input and output capabilities, and can be used as a general-purpose language for text processing, but files are more commonly used by a simulation testbench for stimulus or verification data. There are some VHDL compilers which build executable binaries. In this case, it might be possible to use VHDL to write a testbench to verify the functionality of the design using files on the host computer to define stimuli, to interact with the user, and to compare results with those expected. However, most designers leave this job to the simulator.



It is relatively easy for an inexperienced developer to produce code that simulates successfully but that cannot be synthesized into a real device, or is too large to be practical. One particular pitfall is the accidental production of transparent latches rather than D-type flip-flops as storage elements.[original research?]



One can design hardware in a VHDL IDE (for FPGA implementation such as Xilinx ISE, Altera Quartus, Synopsys Synplify or Mentor Graphics HDL Designer) to produce the RTL schematic of the desired circuit. After that, the generated schematic can be verified using simulation software which shows the waveforms of inputs and outputs of the circuit after generating the appropriate testbench. To generate an appropriate testbench for a particular circuit or VHDL code, the inputs have to be defined correctly. For example, for clock input, a loop process or an iterative statement is required.
friedt
2017-01-19 04:53:13 UTC
What Is Simulation In Vhdl
?
2016-05-16 13:28:24 UTC
VHDL is similar in syntax to the ADA and Verilog programming languages. It is used for both modeling and simulation. From wikipedia: "The key advantage of VHDL when used for systems design is that it allows the behavior of the required system to be described (modeled) and verified (simulated) before synthesis tools translate the design into real hardware (gates and wires)." Overall it sounds more behavioral than substance, so there are some underlying presumptions about the hardware. I do not believe it is related to the actually hardware design directly, but that you must know what the hardware design is like to complete the behavioral model. If you need to fully design the hardware, a common tool used is the OrCad Suite.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...