1
0
forked from tanchou/Verilog

Add LED indication for RX signal in top_uart_loopback module

This commit is contained in:
Gamenight77
2025-05-05 14:54:40 +02:00
parent 589c36ed83
commit e0a54fb42a

View File

@@ -41,6 +41,7 @@ module top_uart_loopback (
reg state = IDLE;
always @(posedge clk) begin
leds[5] <= rx;
case (state)
IDLE: begin
tx_enable <= 0;