3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-08-14 09:55:37 +00:00
yosys/tests/various/hierarchy_recursive.v
Miodrag Milanovic ebf286ab40 Code cleanup
2026-08-04 17:18:22 +02:00

3 lines
66 B
Verilog

module top(input x, output y);
top top_i(.x(x), .y(y));
endmodule