verilator/test_regress/t/t_flag_stats.v

14 lines
301 B
Systemverilog
Raw Normal View History

2014-12-20 13:28:31 +00:00
// 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