verilator/test_regress/t/t_order_wireloop.v

23 lines
470 B
Coq
Raw Normal View History

// $Id:$
// DESCRIPTION: Verilator: Verilog Test module
//
// Use this file as a template for submitting bugs, etc.
// This module takes a single clock input, and should either
// $write("*-* All Finished *-*\n");
// $finish
// on success, or $stop.
//
// **If you do not wish for your code to be released to the public
// please note it here**
module t (/*AUTOARG*/);
wire foo;
wire bar;
// Oh dear.
assign foo = bar;
assign bar = foo;
endmodule