From b25194826e21374e0fe78768098b85fccf53391b Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 10 Oct 2019 19:23:01 +0200 Subject: [PATCH] integration/soc_zynq: shadow_base no longer recommended (replace with io_regions) --- litex/soc/integration/soc_zynq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/integration/soc_zynq.py b/litex/soc/integration/soc_zynq.py index 10e27933..3bcc86b9 100644 --- a/litex/soc/integration/soc_zynq.py +++ b/litex/soc/integration/soc_zynq.py @@ -29,7 +29,7 @@ class SoCZynq(SoCCore): SoCCore.mem_map["csr"] = 0x00000000 def __init__(self, platform, clk_freq, ps7_name, **kwargs): self.ps7_name = ps7_name - SoCCore.__init__(self, platform, clk_freq, cpu_type=None, shadow_base=0x00000000, **kwargs) + SoCCore.__init__(self, platform, clk_freq, cpu_type=None, **kwargs) # PS7 (Minimal) ---------------------------------------------------------------------------- fclk_reset0_n = Signal() -- 2.30.2