verilator/test_regress/t/t_tri_pull2_bad.v

29 lines
395 B
Systemverilog
Raw Normal View History

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2010 Lane Brooks
// SPDX-License-Identifier: CC0-1.0
2026-03-10 02:38:29 +01:00
module t (
input clk
);
2026-03-10 02:38:29 +01:00
wire A;
2017-09-12 01:18:58 +02:00
2026-03-10 02:38:29 +01:00
pullup p1 (A);
2026-03-10 02:38:29 +01:00
child child ( /*AUTOINST*/
// Inouts
.A(A)
);
2017-09-12 01:18:58 +02:00
endmodule
2026-03-10 02:38:29 +01:00
module child (
inout A
);
2026-03-10 02:38:29 +01:00
pulldown p2 (A);
endmodule