verilator/test_regress/t/t_udp_bad.v

24 lines
444 B
Systemverilog
Raw Normal View History

2020-05-17 15:06:14 +00:00
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2009 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
module t (/*AUTOARG*/);
wire a, b;
udp_x x (a, b);
endmodule
primitive udp_x (a_bad, b, c_bad);
tri a_bad;
output b;
output c_bad;
table
//a b
0 : 1;
1 : 0;
endtable
endprimitive