1
0
mirror of synced 2026-04-25 20:02:10 +00:00
Files
YosysHQ.yosys/tests/hana/test_intermout_bufrm_6_test.v
Clifford Wolf 7764d0ba1d initial import
2013-01-05 11:13:26 +01:00

23 lines
291 B
Verilog

module test(in, out);
input in;
output out;
wire w1, w2, w3, w4;
assign w1 = in;
assign w2 = w1;
assign w4 = w3;
assign out = w4;
mybuf _mybuf(w2, w3);
endmodule
module mybuf(in, out);
input in;
output out;
wire w1, w2, w3, w4;
assign w1 = in;
assign w2 = w1;
assign out = w2;
endmodule