prepared by P. Bakowski
Contents: describing structure, describing behavior, modeling time, first example, exercises
The above module has tree inputs, a, b and cin , and two outputs s and cout. Using VHDL terminology, we call the module full adder a design entity , and the inputs and outputs are called ports . One way of describing the function of a module is to describe how it is composed of sub-modules. Each of the sub-modules is an instance of some entity, and the ports of the instances are connected using signals .
Structural description of full adder might be composed of instances of entities M1, M2 and M3. This kind of description is called a structural description. Note that each of the entities M1, M2 and M3 might also have a structural description.
The simulation starts with an initialization phase, and then proceeds by repeating a two- stage simulation cycle . In the initialization phase, all signals are given initial values, the simulation time is set to zero, and each module's behavior program is executed. This usually results in transactions being scheduled on output signals for some later time. In the first stage of a simulation cycle, the simulated time is advanced to the earliest time at which a transaction has been scheduled. All transactions scheduled for that time are executed, and this may cause events to occur on some signals. In the second stage, all modules which react to events occurring in the first stage have their behavior program executed. These programs will usually schedule further transactions on their output signals. When all of the behavior programs have finished executing, the simulation cycle repeats. If there are no more scheduled transactions, the whole simulation is completed.
The purpose of the simulation is to gather information about the changes in system state over time. This can be done by running the simulation under the control of a simulation monitor (simulator) . The simulator maintains signals' states in corresponding signal drivers. Future values of the signal are stored in a signal driver and activated when the simulation time arrives at their position on time axis (this time instant is called now). Below we have illustrated the content of the driver of signal a. The current value of the signal a is '0' ; it will change to '1' in 10 ns; this also means that the current value of b is '0'.