verilator/test_regress/t/t_order_wireloop.v

20 lines
346 B
Systemverilog
Raw Normal View History

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2005 Wilson Snyder
// SPDX-License-Identifier: CC0-1.0
2026-03-10 02:38:29 +01:00
module t ( /*AUTOARG*/
// Outputs
bar
);
2026-03-10 02:38:29 +01:00
wire foo;
output bar;
2026-03-10 02:38:29 +01:00
// Oh dear.
assign foo = bar;
assign bar = foo;
endmodule