From 9d9b3b1cce710633020ff1280d98325af4bb3a0f Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Mon, 31 Oct 2022 16:56:17 +0100 Subject: [PATCH] eth: Fix incorrect TX exit condition --- trashernet/trashernet_eth.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trashernet/trashernet_eth.vhd b/trashernet/trashernet_eth.vhd index 77d7d84..3195958 100644 --- a/trashernet/trashernet_eth.vhd +++ b/trashernet/trashernet_eth.vhd @@ -141,7 +141,7 @@ begin end if; when TXD => - state <= IDLE when (mac_in.tx_mac_data_en or not mac_out.tx_active); + state <= IDLE when (not mac_in.tx_mac_data_en or not mac_out.tx_active); end case; end if; end process arb;