TIDE
Languages

Verilog

Installing Verilog on Ubuntu in TIDE

Verilog

Verilog is a hardware description language (HDL) used to model electronic systems.

Installation

Icarus Verilog (iverilog) is an open-source Verilog simulation and synthesis tool available on Ubuntu:

apt update
apt install -y iverilog

Verification

Check the Icarus Verilog version:

iverilog -v

Compilation & Simulation

Create a hello.v file:

module main;
  initial begin
    $display("Hello, Verilog in TIDE!");
    $finish;
  end
endmodule

Compile and run simulation with vvp:

iverilog -o hello hello.v
vvp hello

Official Resources

On this page