nvboard/example/vsrc/uart.v

7 lines
69 B
Verilog

module uart (
output tx,
input rx
);
assign tx = rx;
endmodule