yosys/tests/various/hierarchy_recursive.v

4 lines
66 B
Verilog
Raw Normal View History

module top(input x, output y);
top top_i(.x(x), .y(y));
2026-08-04 17:18:22 +02:00
endmodule