From: Florent Kermarrec Date: Mon, 10 Feb 2020 18:37:53 +0000 (+0100) Subject: tools/litex_sim_new: switch to dynamically allocated ethmac origin X-Git-Tag: 24jan2021_ls180~677^2~16 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5e11e8391f0c57fe13b6609257357ab72d626e58;p=litex.git tools/litex_sim_new: switch to dynamically allocated ethmac origin --- diff --git a/litex/tools/litex_sim_new.py b/litex/tools/litex_sim_new.py index 7c17482e..52cb4f4d 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")