From 80bded4ffc71f68962689d3d6c0be41ff9f846d0 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 25 Jun 2024 18:26:20 +0200 Subject: [PATCH] liteeth/mac/wishbone: Fix write_only mode on RX. --- liteeth/mac/wishbone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liteeth/mac/wishbone.py b/liteeth/mac/wishbone.py index 21bdd8b..1be58de 100644 --- a/liteeth/mac/wishbone.py +++ b/liteeth/mac/wishbone.py @@ -46,7 +46,7 @@ class LiteEthMACWishboneInterface(LiteXModule): mems = self.sram.writer.mems, nslots = nrxslots, read_only = rxslots_read_only, - write_only = True, + write_only = False, ) self._expose_wishbone_sram_interfaces( bus = self.bus_tx,