verilator/test_regress/t/t_inst_missing.v

18 lines
521 B
Coq
Raw Normal View History

2013-02-02 21:52:08 +00:00
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2012 by Wilson Snyder.
module t (/*AUTOARG*/);
wire ok = 1'b0;
// verilator lint_off PINNOCONNECT
2014-03-28 01:36:52 +00:00
// verilator lint_off PINCONNECTEMPTY
sub sub (.ok(ok), , .nc());
// verilator lint_on PINCONNECTEMPTY
2013-02-02 21:52:08 +00:00
// verilator lint_on PINNOCONNECT
endmodule
2014-03-28 01:36:52 +00:00
module sub (input ok, input none, input nc);
initial if (ok && none && nc) begin end // No unused warning
2013-02-02 21:52:08 +00:00
endmodule