2012-04-26 22:43:12 +00:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
//
|
2020-03-21 15:24:24 +00:00
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
|
|
// any use, without warranty, 2012 by Wilson Snyder.
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2012-04-26 22:43:12 +00:00
|
|
|
|
|
|
|
module t (/*AUTOARG*/);
|
|
|
|
wire ok = 1'b0;
|
2023-03-02 02:19:21 +00:00
|
|
|
// verilator lint_off UNDRIVEN
|
|
|
|
wire nc;
|
|
|
|
// verilator lint_on UNDRIVEN
|
|
|
|
|
|
|
|
sub sub (ok, , nc);
|
2012-04-26 22:43:12 +00:00
|
|
|
endmodule
|
|
|
|
|
2014-03-28 01:36:52 +00:00
|
|
|
module sub (input ok, input none, input nc, input missing);
|
|
|
|
initial if (ok && none && nc && missing) begin end // No unused warning
|
2012-04-26 22:43:12 +00:00
|
|
|
endmodule
|