verilator/test_regress/t/t_flag_stats.v
2014-12-20 08:28:31 -05:00

14 lines
301 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2014 by Wilson Snyder.
module t (b);
output reg [31:0] b;
initial begin
b = 22;
$write("*-* All Finished *-*\n");
$finish;
end
endmodule