Sign in
foss-fpga-tools
/
symbiflow-arch-defs
/
refs/heads/bot-conda-lock-update
/
.
/
xilinx
/
xc7
/
tests
/
carry
/
carry.v
blob: 2631d7fce08b2a38fd2168a976738c8860389e88 [
file
] [
log
] [
blame
] [
edit
]
module
top
(
input wire clk
,
input wire rx
,
output wire tx
,
input wire
[
15
:
0
]
sw
,
output wire
[
15
:
0
]
led
);
assign led
=
sw
;
// Uart loopback
assign tx
=
rx
;
endmodule