blob: d3a149b5cd13be0dcf6ef7847ab6e070d1077017 [file] [log] [blame]
// 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;
integer p_i;
initial begin
// BAD: Missing argument
if ($value$plusargs("NOTTHERE", p_i)!==0) $stop;
// BAD: Bad letter
if ($value$plusargs("INT=%z", p_i)!==0) $stop;
// BAD: Multi letter
if ($value$plusargs("INT=%x%x", p_i)!==0) $stop;
$write("*-* All Finished *-*\n");
$finish;
end
endmodule