Get Started with VHDL Programming: Design Your Own Hardware

Disclosure: Your support helps keep the site running! We earn a referral fee for some of the services we recommend on this page. Learn more

VHDL is a hardware description language(HDL). An HDL looks a bit like a programming language, but has a different purpose. Rather than being used to design software, an HDL is used to define a computer chip. VHDL can be used to describe any type of circuitry and is frequently used in the design, simulation, and testing of processors, CPUs, mother boards, FPGAs, ASICs, and many other types of digital circuitry.

VHDL History

The name VHDL is a nested acronym. It stands for VHSIC Hardware Description Language. VHSIC stands for Very High Speed Integrated Circuit. Besides being a description of a fast processor, it was the name of a US Governement program in the 1980s whose mission was research and development in the field of very high speed integrated circuits (fast computer chips).

Along with major advancements in materials science, algorithms, chip design, lithography, and a dozen other related fields, VHSIC developed VHDL.

The first official standard for the language came from the IEEE in 1987, and is known as IEEE 1076. There have been several editions since then, the latest coming in 2008. In addition to the “core” language specified in 1076, there are a number of extensions codified in other specs:

  • IEEE 1076.1 VHDL Analog and Mixed-Signal (VHDL-AMS)
  • IEEE 1076.1.1 VHDL-AMS Standard Packages (stdpkgs)
  • IEEE 1076.2 VHDL Math Package
  • IEEE 1076.3 VHDL Synthesis Package (vhdlsynth)
  • IEEE 1076.3 VHDL Synthesis Package – Floating Point (fphdl)
  • IEEE 1076.4 Timing (VHDL Initiative Towards ASIC Libraries: vital)
  • IEEE 1076.6 VHDL Synthesis Interoperability
  • IEEE 1164 VHDL Multivalue Logic (std_logic_1164) Packages

VHDL Design and Syntax

VHDL was based on Ada, and borrowed from it extensively in both syntax and concepts. This was then supplemented with hardware-specific concepts like multi-valued logic, physical parallelism, and an extended set of boolean operators. VHDL can also index arrays in both ascending and descending order, whereas Ada (and most other programming languages as well) only index in ascending order.

Most programming languages are, at heart, procedural — the computer executes one command after another in sequence. VHDL is different. It is a hardware language that describes a (real or simulated) physical structure. That structure is made up of a large number of modules, and each module acts at the same time as every other module.

So, within each module there is a procedural flow of instructions that looks somewhat like a small, self-contained software program — with variables, control flows, conditionals, loops. Each module has one or more inputs along with one or more outputs. The inputs are specified within a structure called an entity, and the self-contained logic is defined in an architecture.

Consider the idea of an “AND gate” where we have two inputs and one output. If both the inputs are “on” (true, 1), then the output is “on”; otherwise, the output is “off.” So using VHDL, we would define two inputs and one output. The accepted values of those inputs and outputs would be defined in a std_logic module, which is imported like a library in a regular programming language. The architecture would then define the internal workings of our “AND gate” so that it works as we just discussed.

The std_logic module is an interesting hardware specific type of value. It is similar to the BOOLEAN value present in programming languages (one bit: true or false), but it can have a range of values, since it represents an actual electrical impulse in a physical system:

  • U: uninitialized. This signal hasn’t been set yet.
  • X: unknown. Impossible to determine this value/result.
  • 0: logic 0
  • 1: logic 1
  • Z: High Impedance
  • W: Weak signal, can’t tell if it should be 0 or 1.
  • L: Weak signal that should probably go to 0
  • H: Weak signal that should probably go to 1
  • -: Don’t care.

This is, in miniature, how a full VHDL design is built. Fairly simple, logically self-contained modules of I/O activity are built up and connected to each other to form computational machines capable of performing different types of tasks. A VHDL design could describe a fully-functioning general-purpose computer, or it could encode an single algorithm such as the brute-force proof-of-work used for Bitcoin mining.

It’s important to realize that a VHDL design is not a program — it is not run or executed. Like a blueprint, it defines an architecture. Once a design is completed it is usually simulated for testing in a software testbench, and then synthesized, which means that it is translated into a physical design which can be implemented on an actual chip or circuit board.

Resources for Learning VHDL

There are a lot of resources for learning VHDL. We’ve put together some of the best.

Online Resources

Books

All these books focus on VHDL:

VHDL & Verilog Books

VHDL’s main “competition” is Verilog. Both languages are used for hardware design, so there are a number of books that focus on underlying design and engineering concepts and use both VHDL and Verilog.

Implementations and Simulators

Tools

You Should Also Know…

VHDL is one of two major hardware description languages. The other is Verilog. Most hardware designers are familiar with both, as well as low level operating system languages like Cand C++.

Adam Michael Wood

About Adam Michael Wood

Adam specializes in developer documentation and tutorials. In addition to his writing here, he has authored engineering guides and other long-form technical manuals. Outside of work, Adam composes and performs liturgical music. He lives with his wife and children in California.

Comments

Thanks for your comment. It will show here once it has been approved.

Your email address will not be published. Required fields are marked *