3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-08-04 13:23:35 +00:00
yosys/tests/various/hierarchy_recursive.v
2026-08-03 17:36:49 +02:00

3 lines
No EOL
65 B
Verilog

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