Introduction

In this section we will present the Verilog language, wich is a very popular hardware description language, in this tutorial we're going to learn sample by sample out Spartan3E starter kit.

Some words about Verilog

Verilog is a hardware description language (HDL) and differs from a normal language as C, or Pascal, because it has features to describe signal propagation, paralelism, and sensivity list, things that normal languages don't have. Verilog is also used to describe "test-benches" wich are test scripts used by some digital simulator to verify the hardware functionality.

Abstraction Levels

Verilog allows 3 different ways to write code:

First contact with Verilog

Let's describe a simple Flip-Flop D and test it in our starter kit, don't need to get to much attention to the syntax, this is just a simple sample to get the idea.

Look at the pins used...

Verilog code

The video bellow show the process of creating a FFD

Content on this page requires a newer version of Adobe Flash Player.

Get Adobe Flash player

Next topic:

First contact