This repository has been archived on 2024-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
study/uart_tx _copy/rtl/uart_tx_top.v.bak
2020-06-09 15:48:03 +08:00

29 lines
246 B
Coq

module uart_tx_top(
clk,
rst_n,
tx
);
input clk;
input rst_n;
output tx;
wire tx_done;
uart_tx uart0 (
.baud_set(2'b00),
.clk(clk),
.data(data),
.en(1'b1),
.rst_n(rst_n),
.tx(tx),
.tx_done(tx_done)
);
endmodule