mirror of
https://github.com/verilator/verilator.git
synced 2025-01-08 23:57:35 +00:00
27 lines
531 B
Verilog
27 lines
531 B
Verilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
// without warranty, 2005 by Wilson Snyder.
|
|
|
|
// verilator lint_off SYMRSVDWORD
|
|
|
|
module t (/*AUTOARG*/
|
|
// Inputs
|
|
bool
|
|
);
|
|
|
|
input bool; // BAD
|
|
|
|
reg vector; // OK, as not public
|
|
reg switch /*verilator public*/; // Bad
|
|
|
|
// global is a 1800-2009 reserved word, but we allow it when possible.
|
|
reg global;
|
|
|
|
initial begin
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
|
|
endmodule
|