Hardware Modelling with Verilog HDL


The Verilog Hardware Description Language can be used to model a digital circuit during the design stage. Such a design may be simulated using the Verilog-XL digital simulator in order to make early descisions on the viability of a design. The design may then be further refined at this stage before any circuit is implemented. The final Verilog HDL model may then be used as a base for circuit design or directly synthesized to produce a circuit implementation.

This page describes creation and refinement of Verilog HDL model files. It also touches on their simulataion and synthesis. The details of simulation and synthesis are discussed elsewhere.

The Verilog Hardware Description Language offers many more features than I could hope to cover in these pages. This page attempts to choose the most useful parts of the Verilog HDL and illustrate their use with simple examples.

A definitive description of the Verilog constructs used may be found in the cdsdoc on-line manual.


Structural Models

Verilog HDL supports a number of built in logic gates from which larger systems can be constructed. The basic gates are:

Multi-input gates
(two or more inputs)
and or xor
nand nor xnor
e.g. and inst (output, input1, input2, input3 .....);
Single-input gates
(one or more outputs)
buf
not
e.g. buf inst (output1, output2 ....., input);
Tri-state gates bufif1 bufif0
notif1 notif0
e.g. bufif1 inst (output, input, enable);

A simple strucural model is a netlist describing the interconnection of gates to create a module definition.


Structural Model of a D type flip-flop

The following file, dtype.v, is a structural model for the D type flip-flop:

Major Features

Timescale Directive

This should exist at the top of each Verilog file. It declares the units for time delays within the file and also the maximum resolution for such delays.

Module Definition

The module...endmodule construct delimits the module definition.

The module line defines the name of the module and gives an ordered port list of the inputs and ouptuts. By convention the outputs are listed first.

Subsequent input and output statements are used to distiguish inputs from outputs.

Wire Declarations

Here all signals which will be used are declared as single bit wires. This section is optional since an undeclared signal is assumed to be a single bit wire.

Gate Instances

Each gate instance line consists of a gate type, a unique instance name by which we can distiguish the different gates and an ordered list of wires to be connected to the gate instance. The ordering of these wires should correspond exactly with the ordering of the ports of the gate; for all these gates the only requirement is that the output is listed before the inputs.

Simulation

The stimulus file for this HDL model is dtype_stim.v.

To simulate this design, copy the relevant files to a suitable directory and type the following at the unix command prompt:


Structural Model of a 4-bit Counter

The following file, count.v, is a structural model for the counter:

Major Features

Hierarchy

More complex designs employ a hierarchy of structural models. This design defines a counter module in terms of basic gates and the d-type flipflop, which is a sub-module defined in the file dtype.v.

Thus we can redefine the stuctural model as a netlist describing the interconnection of gates and sub-modules to create a module definition.

Simulation

The stimulus file for this HDL model is count_stim.v.

Type the following at the unix command prompt:


Behavioural Models

Verilog HDL supports a number of operators from which expressions can be constructed. The basic operators are:

binary unary example
Logical single bit inputs
single bit output
&& || ! Logical AND
True && False = False
Relational multi-bit inputs
single bit output
== != >= <= Greater or Equal
9 >= 7 = True
Bit-wise Boolean multi-bit inputs
multi-bit output
& | ^ ~^ ~ Bit-wise XOR
1012 ^ 1102 = 0112
Arithmetic multi-bit inputs
multi-bit output
+ - * / % - Modulus
9 % 4 = 1
Shift multi-bit inputs
multi-bit output
>> << Right Shift
101102 >> 2 = 1012

Expressions can be used along with continuous assignment statements to provide behavioural models of combinational logic circuits.

More complex behavioural models, in particular those describing sequential circuits, will employ procedural assignments and more complex procedural statements. Such statements include descision statements such as if...else and case and even looping statements such as while and for.


Behavioural Model of a Window Comparator

The following file, window.v, is a behavioural model of a digital window comparator:

Major Features

Continuous Assignment

A single or multi-bit wire may have its value determined as the output of an expression using a continuous assignment statement. The assignment is described as continuous since the expression on the right hand side is continuously monitored allowing any changes to be propagated to the wire on the left hand side of the assignment.

Simulation

The stimulus file for this HDL model is window_stim.v.

Type the following at the unix command prompt:


Behavioural Model of a D type flip-flop

The following file, dff.v, is a behavioural model of a D type flip-flop:

Major Features

Registers and Procedural Assignments

Q is defined as a register. A register is assigned values at regular or irregular intervals. The register will remember the value assigned until the next time an assignment takes place.

All assignments to registers are procedural and hence must occur within an always or an initial procedure.

Event Control

@(posedge Clk) is a event control. In this example we see that every time we have a rising edge on the Clk signal we will assign the value of D to the register Q. Between rising clock edges, Q remains unchanged regardless of any changes in the value of D.

This is the normal method for the description of a synchronous sequential system.

Simulation

The stimulus file for this HDL model is dff_stim.v.

Type the following at the unix command prompt:


Behavioural Model of an Up/Down Counter

The following file, up_down_count.v, is a behavioural model of a 4-bit up/down counter:

Major Features

Begin...End

The begin...end construct groups a number of statements that will be evaluated in sequence.

Note that an alternative construct fork...join which groups statements that will be evaluated in parallel is seldom used since it is unsynthesizable.

Non-Blocking Procedural Assignments

Note that it is usual to use a non-blocking procedural assignment, X <= Y, rather than a blocking procedural assignment, X = Y within a clock controlled begin...end construct (synthesis is of the former is much simpler). The non-blocking version evaluates all right hand side expressions in the sequence before assigning values to any of the left hand side registers.

The difference is indicated by the following piece of code which swaps the values of A and B:

Rather than the alternative which leaves A and B both equal to the old value of B:

Reset

Here we see that the event control, @(posedge clock or negedge not_reset), will wait for either a rising edge on clock or a falling edge on not_reset.

The subsequent code gives reset priority such that when reset is active, count is held at zero regardless of the clock or other inputs.

This is the normal strategy for the description of an asynchronous reset within a synchronous sequential system.

Alternative Reset Strategy

The following Verilog fragment shows an alternative strategy for describing the asynchronous reset action.

The full code can be found in the file, alt_up_down_count.v.

This reset strategy employs the strange hybrid known as the continuous procedural assignment. On the falling edge of not_reset, the register value is forced to zero and will remain at zero regardless of any procedural assignments to the register until the rising edge of not_reset releases the register value for subsequent procedural assignment.

Although this strategy results in a faster simulation and greater flexibility in the layout of code, it is not recognized by many synthesis systems making it of little use for portable code.

Simulation

The stimulus file for this HDL model is up_down_count_stim.v.

Type the following at the unix command prompt:


Behavioural Model of a Microprocessor

The microprocessor is described in the following verilog files:

Major Features

Hierarchy

Most complex behavioural models are constructed as a hierarchy of simpler behavioural models.

The Processor module instances the Control, Datapath and Memory modules. It is in fact merely a structural descrition of their interconnection:

The Datapath module instances the ALU module but also contains the behavioural description of the Accumulator:

Multiplexors using Continuous Assignment

The following construct describes a multiplexor which selects input1 if select is `1' and input0 if select is `0':

The Control module includes an address multiplexor based on this construct:

Procedural Blocks as Combinational Logic

A procedural block with an event control of the form @(input1 or input2 or ...) can be used to describe a combinational logic block provided that:

  1. all inputs to the combinational block are listed in the event control.
  2. the ouputs of the combinational block are declared as registers rather than wires although they will synthesize as wires (for this reason they are sometimes known as pseudo-registers).
  3. the values of all ouputs are defined for all possible combinations of inputs.

The ALU module uses such a construct to evaluate result:

Note that including a default case covers requirement 3 above.

Tristate Bus

The processor includes a tristate bus, Data_bus, which may be driven from one of several (in this case only two) sources. The following statement describes a tristate buffer which drives an n-bit bus from an n-bit input drive when the enable signal is `1' (otherwise the bus is driven high impedence, `z', allowing it to be driven by another source):

The Datapath module may drive the Data_bus, locally known as data, from the Accumulator:

Note the inout declaration for data indicating that it is both an input and an output for the module.

The Memory module may also drive the Data_bus:

Constants & File Inclusion

The opcodes.v file declares constants to be used in other modules:

The alu.v file includes the opcodes.v file and then uses the constants within the alu module:

Simulation

The stimulus file for this HDL model is system.v.

Before simulating this design, first copy the stimulus file to a suitable directory and then create a sub directory called library into which you should copy the model files. The appropiate simulation command lists only the stimulus file and the name of the directory in which the other files are located:


Additional Documentation

All Verilog documentation is available on-line via cdsdoc. Type the following at the unix command prompt in order to invoke cdsdoc:

On-line manuals of particular interest to this tutorial are:


Verilog Capable Machines

1The verilog program runs on the SUCS Sun workstations in the Shackleton building and on the ECS CAD server (salvador). If you are logged into one of these machines you can check the availability of verilog by typing:

If you get a "verilog_xl: Command not found." message you should check your account configuration.

If you need only the non-graphics implementation of the simulator you can run verilog on a verilog capable machine when remotely logged in from any other machine using telnet.
If you need graphical output, then you must be sitting at a machine with X-windows running and correctly configured. The best way to be sure of X-windows capability is to sit at a verilog capable machine.


Iain McNally

22-12-2003