verilator/test_regress/t/t_udp_param_bad.v

23 lines
407 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2023 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