verilator/examples/make_hello_sc/top.v
2019-10-06 10:32:49 -04:00

13 lines
323 B
Systemverilog

// DESCRIPTION: Verilator: Verilog example module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2017 by Wilson Snyder.
// See also the EXAMPLE section in the verilator manpage/document.
module top;
initial begin
$display("Hello World!");
$finish;
end
endmodule