2017-09-24 01:18:07 +00:00
|
|
|
// DESCRIPTION: Verilator: Verilog example module
|
|
|
|
//
|
2020-03-21 15:24:24 +00:00
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
|
|
// any use, without warranty, 2017 by Wilson Snyder.
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2017-09-24 01:18:07 +00:00
|
|
|
|
2021-11-13 20:01:27 +00:00
|
|
|
// See also https://verilator.org/guide/latest/examples.html"
|
|
|
|
|
2017-09-24 01:18:07 +00:00
|
|
|
module top;
|
|
|
|
initial begin
|
|
|
|
$display("Hello World!");
|
|
|
|
$finish;
|
|
|
|
end
|
|
|
|
endmodule
|