verilator/test_regress/t/t_flag_main.v
2021-02-22 22:59:23 -05:00

14 lines
384 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2020 by engr248.
// SPDX-License-Identifier: CC0-1.0
module t(/*AUTOARG*/);
initial begin
$write("[%0t] Hello\n", $time); // Check timestamp works
$write("*-* All Finished *-*\n");
$finish;
end
endmodule