iVerilog is an open-source tool for simulating and synthesizing Verilog code. It is lightweight (only a few megabytes of disk space is required) and it is available for both Linux and Windows. We can simulate the Verilog code and see the output of described Verilog HDL using GTK wave
In this article, I'll show you how to install open source tools for simulating Verilog code and how to use them to see simulation outputs.
You've started learning Verilog for your projects or for any other reasons? Great! 😍, but for simulating or synthesizing the Verilog code you require a toolchain. When you search Verilog simulator on the Internet, you'll find various online or offline tools and some of them are commercial tools. You decide to get started with online tools. Then you realise that the online tools are not so good for learning Verilog efficiently because online tools require a stable Internet connection and sometimes the online tools do not work properly. Then you decide to download an offline toolchain.
You find some free tools for Verilog simulation and then you realize that the tool is not user-friendly 😓 (in the beginning). How to download the tool? How to simulate? There is no proper instruction to use the free tools 😖. Then you find a commercial toolchain which is freely available and easy to use. Nice! 😊
Then you start downloading the commercial toolchain you realise that it is too big and lots of bandwidth and time are required😑. Somehow you've managed to download the toolchain and yeah it is working fine 😀 there are lots of decent tutorials are available on the Internet.
Installing iverilog and gtkwave in ubuntu is not so difficult. All you need is to just open the terminal and type a few commands. Follow step by step.
Open Terminal (ctrl + alt + T) and type following command.
Write following command (which is shown in white text). After this command, it may ask you for password. Type password and press enter.
user@ubuntu:~ $ sudo apt update && upgrade
The command for installing iverilog is given below
user@ubuntu:~ $ sudo apt install iverilog
The command for installing GTKwave is given below
user@ubuntu:~ $ sudo apt install gtkwave
Type following command
user@ubuntu:~ $ iverilog
You'll get following outputs. If you're getting this output then iVerilog is install correctly. If not then iverilog is not installed and you are required to install again properly.
Type following command
user@ubuntu:~ $ gtkwave
You'll get following outputs. If you're getting this output then GTKwave is install correctly. If not, go back to previous steps or start again from the step 1.
We've installed all the tools required for simulating the verilog code. Now we'll write the verilog code and do the simulation.
open text editor and write the following verilog code. Save this code inside Home director with name hello.v. We are not creating the hardware but we are writing the verilog code to verify that the iVerilog tool is working fine.
Open terminal and check weather the file hello.v is present or not (by typing command ls). If not, goto home directory (or where the verilog file is save), right click, click open in terminal
Write following command for compiling the verilog code
user@ubuntu:~ $ iverilog -o hello hello.v
You'll get a new file with name hello
Write following command and now you can see the verilog output
user@ubuntu:~ $ vvp hello
Till now, we've done Verilog code compiling. Now we'll describe hardware in a text and check whether the described hardware is generating desired output or not. We'll describe a NOT Gate to keep it simple. The description of the NOT gate in the Verilog is given below. Write the code in a text editor and save it in the home directory with the name inverter.v
If you've not understood the code. Don't worry! it is not difficult to learn verilog. For now, just see the code and analyse it. We've created a module and this module has an inverter. a is the input of the inveretr and y is output.
Create a new file with name inverter_tb.v and save in the same directory where inverter.v is saved and write the code as shown below.
We've created verilog code and testbench for and inverter and both are in the same directory. For simulating, type following command in the terminal.
user@ubuntu:~ $ iverilog -o inverter inverter.v inverter_tb.v
user@ubuntu:~ $ vvp inverter
user@ubuntu:~ $ gtkwave inverter.vcd
On GTKwave window, click on uut, wire a and wire b and you'll see the output as shown below
That's all
Click like if you found this useful
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
Comments (1)
thanks alot for the help