forked from github/verilator
16 lines
284 B
Systemverilog
16 lines
284 B
Systemverilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
// without warranty, 2009 by Wilson Snyder.
|
|
|
|
module t;
|
|
reg foobar;
|
|
|
|
task boobar; endtask
|
|
|
|
initial begin
|
|
if (foobat) $stop;
|
|
boobat;
|
|
end
|
|
endmodule
|