aspect

VHDL combinational circuits modeling - examples

prepared by P. Bakowski


Contents: simple adder, ones counter, latch with I/O logic


First example


A simple combinational circuit - full adder

In this section we will look at a small example of a VHDL description of a full adder to give you a feel for the language and how it is used.

We start the description of an entity by specifying its external interface, which includes a description of its ports.


Below we present three kinds of architectures for the full adder entity:

purely functional architecture

behavioral architecture including function and timing

tabular desription of the behavioral description


The first model expresses only one aspect of the full adder behavior which is function (function only)




It may be developed in order to introduce timing information through the generic statement which contains the predefined temporal parameters - delays:



Which provides us with a reformulated architecture which provides a complete behaviour including function and timing



The following adder architecture is decribed using a table. This approach to built very rapid models requiring no calculations.

The tabular approach is extensively used to model simple combinational logic circuits.



Note the use of bin2int conversion function. This function transforms a bit vector into the integer value necessary to use to select an element into array.


Second example


Ones counter

The second example describes a simple one's counter with three inputs and two outputs.

The model uses one VHDL process.



-- Test process


Third example


Latch models

The behaviour of this circuit may be modeled with different degrees of precision depending on the temporal aspect.

The following example illustrate three levels of timing modeling for 8-bit latch.

The first model has a simplified timing called simple delta_delay timing. This simple model involves no explicit timing values.

Only the functional are modeled.It is purely functional model.




Second implementation of registre implies a simplified timing. In this example, the temporal response on the input events are independent.

This allows to build an architecture with a single proces.

For example if strobe signal is validated than the input value is registered in the latch after strb_del (strobe delay).

If both the strobe and output are validated the input value appears at the output after the cumulated delay of strb_del plus out_del.

Note that the enable delay (enbl_del) necessary to activate the output validation is not taken into account.



The third model takes into account all events' combinations. This requires the introduction of three independent processes each one associated with one kind of correlated external and internal events.

The process strobe_proc operates on strobe signal and loads the latch.

The process enbld_proc operates on the output validation signals and generates an internal signal called enbld_sig.

The process output_proc is activated independently by new latch content and output validation signal.



The last implementation is conceptually the same as the third one. The only difference is in the way the three independent processes are created.

The activation of the first input process is conditionned by the use of a guarded signal.

The activation condition for this signal is defined in the block statement to which the guarded signal belongs.

The processes enbl_proc and output_proc are described as independed signal assignments.



Test unit: