yosys/tests/various/hierarchy_recursive.v

4 lines
66 B
Verilog

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