2012-11-14 01:12:23 +00:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
//
|
|
|
|
// A test of the +verilog2001ext+ and +verilog2005ext+ flags.
|
|
|
|
//
|
|
|
|
// This source code uses the uwire declaration, which is only valid in Verilog
|
|
|
|
// 2005.
|
|
|
|
//
|
|
|
|
// Compile only test, so no need for "All Finished" output.
|
|
|
|
//
|
|
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
|
|
// without warranty, 2012 by Jeremy Bennett.
|
2020-03-21 15:24:24 +00:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2012-11-14 01:12:23 +00:00
|
|
|
|
|
|
|
module t (/*AUTOARG*/
|
|
|
|
// Inputs
|
|
|
|
clk
|
|
|
|
);
|
|
|
|
input clk;
|
|
|
|
|
2018-10-27 14:03:28 +00:00
|
|
|
uwire w; // Only in Verilog 2005
|
2012-11-14 01:12:23 +00:00
|
|
|
|
|
|
|
endmodule
|