Skip to content
Digital Rhyme
FPGA board, oscilloscope waveforms, and digital logic notes on a lab bench

hello_world.v Source

Modules, wires, regs, combinational logic, sequential logic, testbenches, and synthesis.

1// SPDX-License-Identifier: MIT
2// A simulation-only "Hello, World" example for learning the tool flow.
3module hello_world;
4 initial begin
5 $display("Hello, Verilog world");
6 $finish;
7 end
8endmodule