verilator/test_regress/t/t_udp_param_bad.v
2023-09-25 10:40:44 -04:00

23 lines
418 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2023 by Anthony Donlon.
// SPDX-License-Identifier: CC0-1.0
module t;
wire a, b;
udp i_udp (a, b);
endmodule
primitive udp #(
parameter A = 1
) (o, a);
output o;
input a;
table
//o a
0 : 1;
1 : 0;
endtable
endprimitive