Files
neulacpu/vsrc/top.v
2023-05-11 12:33:10 +08:00

6 lines
87 B
Verilog

module top (
input wire i_x,
output wire o_y
);
assign o_y = i_x;
endmodule