aspect

VHDL sequential circuits modelling

prepared by P. Bakowski


Contents: simple clock, simple flip/flops, finite state machines, implicit states, explicit states


A circuit is considered sequential if its outputs are a function not only of its inputs but also a function of a present state of the circuit. Sequential circuits feature internal memory keeping the state of the circuit.

We start our presentation of sequential circuit description by two simple examples: clock generator example and d-latch example. Then we illustrate how to describe the behaviour of more complex sequential circuits using the notion of state machines.


First example


A simple clock generator

This page starts with a description of a simple clock:

The above circuit may be described as follows:


Second example


d-latch

The first latch example describes has only one input (d) and one output (q).


The following is a more complete d-latch architecture featuring two aditional inputs : clk - synchronization and clr - reset

The following model uses block module.



Clock level trigerred version:


Clock rising edge trigerred version:


Third example - state machines


There are two styles to describe the state machine circuits in VHDL:

The example of an implicit description uses a procedural flow control to determine the sequences of states. This flow is synchronized by the introduction of multiple wain until clock'event clauses.

The explicit representation of the states is restricted to the use of a single wait until clock'event clause.

The example describes the architecture of cross-road lights: green, yellow and red. In both descriptions the lights are in turn ON (red,yellow,green) unless there is a reset.




The following is the explicit version of our FS machine. Note that at each clock event the model test the current state.