How to use Verilog HDL on Ubuntu?

I tried to begin a small course with some examples in Verilog Hdl and after spending much time searching for the best Simulator or IDE to practice with some examples , I failed to figure out how to use it on Ubuntu 12.04

So, I have two questions :

  1. How can I use Verilog on Ubuntu 12.04?

  2. What is the best Simulator (or IDE) available for Linux?

0

5 Answers

Does this post help: Verilog and VHDL on Linux (Ubuntu)?

It recommends a combined use of Icarus Verilog (iverilog in repositories) for Verilog simulation, GHDL for VHDL simulation, and GTKWave (gtkwave in repositories) for waveform viewing.

If you want an Eclipse-based Verilog editor, try veditor.

6
sudo apt-get install iverilog;
sudo apt-get install gtkwave;

To see if everything is working correctly, lets do the hello-world of verilog.

nano hello.v

then write the following hello-world code

 module main;
initial begin $display("Hello world"); $finish; end
endmodule

Then compile

iverilog hello.v -o hello

and finally run your code

vvp hello

You can download SynpatiCAD's Linux Verilog simulator which is Ubuntu compatible. It includes a command line simulator and a graphical IDE. After you install it, you can run the tool and request a free 6 month license for the simulator.

You can also use the IDE environments for FPGA development. Altera Quartus for Altera (Intel) FPGA or Xilinx ISE for Xilinx devices. These environments allow you to write VHDL and Verilog source code and include simulators.

1

Try this command in a terminal window:

sudo apt-get install gplcver
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like