From 5e11e8391f0c57fe13b6609257357ab72d626e58 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 10 Feb 2020 19:37:53 +0100 Subject: [PATCH] tools/litex_sim_new: switch to dynamically allocated ethmac origin --- litex/tools/litex_sim_new.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/tools/litex_sim_new.py b/litex/tools/litex_sim_new.py index 7c17482e5..52cb4f4d0 100755 --- a/litex/tools/litex_sim_new.py +++ b/litex/tools/litex_sim_new.py @@ -213,7 +213,7 @@ class SimSoC(SoCCore): interface = "wishbone", endianness = self.cpu.endianness) self.submodules.ethmac = ethmac - self.bus.add_slave("ethmac", self.ethmac.bus, SoCRegion(origin=0xb0000000, size=0x2000, cached=False)) + self.bus.add_slave("ethmac", self.ethmac.bus, SoCRegion(size=0x2000, cached=False)) self.csr.add("ethmac") self.irq.add("ethmac")