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.ys
2026-08-05 23:32:37 +02:00

6 lines
99 B
Text

read_verilog <<EOT
module top(input x, output y);
top top_i(.x(x), .y(y));
endmodule
EOT
hierarchy