yosys/tests/various/hierarchy_recursive.v

3 lines
65 B
Verilog

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