yosys/tests/hana/test_intermout_bufrm_2_test.v

8 lines
148 B
Coq
Raw Normal View History

2013-01-05 04:13:26 -06:00
module test(input in, output out);
//intermediate buffers should be removed
wire w1, w2;
assign w1 = in;
assign w2 = w1;
assign out = w2;
endmodule