verilator/test_regress/t/t_tri_pull_bad.v

17 lines
288 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);
pulldown p2 (A);
endmodule