From a98a9cbf06d1daa57c18a0f1e5c712ba83187ece Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Tue, 30 Sep 2025 16:13:31 +0200 Subject: [PATCH] udpprot: Prioritize rx/tx mux sources the same way --- trashernet/trashernet_udpprot.vhd | 1 + 1 file changed, 1 insertion(+) diff --git a/trashernet/trashernet_udpprot.vhd b/trashernet/trashernet_udpprot.vhd index 42e0eb6..8012093 100644 --- a/trashernet/trashernet_udpprot.vhd +++ b/trashernet/trashernet_udpprot.vhd @@ -60,6 +60,7 @@ begin for i in udpprot_rx_out'range loop if (udp_out.rx_header.destination_port = udpprot_rx_in(i).port_bind) then rx_sel <= i; + exit; end if; end loop; end if;