From 359b024103f6749f52134d6459ff73c359436518 Mon Sep 17 00:00:00 2001 From: Leon Schuermann Date: Wed, 13 Oct 2021 17:51:23 +0200 Subject: [PATCH] liteeth/mac: remove assertion of 32-bit dw for wishbone interface Signed-off-by: Leon Schuermann --- liteeth/mac/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/liteeth/mac/__init__.py b/liteeth/mac/__init__.py index 548d882..5658955 100644 --- a/liteeth/mac/__init__.py +++ b/liteeth/mac/__init__.py @@ -74,7 +74,6 @@ class LiteEthMAC(Module, AutoCSR): self.submodules.crossbar = LiteEthMACCrossbar(dw) self.submodules.mac_crossbar = LiteEthMACCoreCrossbar(self.core, self.crossbar, self.interface, dw, hw_mac) else: - assert dw == 32 self.comb += self.interface.source.connect(self.core.sink) self.comb += self.core.source.connect(self.interface.sink)