We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 001c7a2 commit 0fab0a0Copy full SHA for 0fab0a0
rtl/uart/uart_rx_example.v
@@ -42,7 +42,7 @@ module uart_rx_example (
42
);
43
44
// Latch the received byte and request a TX write when the TX is free.
45
- always @(posedge i_clk or negedge i_rst_n) begin
+ always @(posedge i_clk) begin
46
if (!i_rst_n) begin
47
tx_wr <= 1'b0;
48
tx_data <= 8'b0;
rtl/uart/uart_tx_example.v
@@ -34,7 +34,7 @@ module uart_tx_example (
34
.i_tx_data(tx_data)
35
36
37
38
39
counter <= 0;
40
end else begin
0 commit comments