1
0
mirror of synced 2026-05-04 15:17:27 +00:00
Files
YosysHQ.yosys/tests/hana/test_intermout_bufrm_2_test.v
Clifford Wolf 7764d0ba1d initial import
2013-01-05 11:13:26 +01:00

8 lines
148 B
Verilog

module test(input in, output out);
//intermediate buffers should be removed
wire w1, w2;
assign w1 = in;
assign w2 = w1;
assign out = w2;
endmodule