From d4c1c97cf96235063269ec055546f020f8ff592d Mon Sep 17 00:00:00 2001 From: Richard Tucker Date: Fri, 16 Feb 2024 15:16:32 +1100 Subject: [PATCH] soc/integration/export: fix incorrect element in get_linker_regions --- litex/soc/integration/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/integration/export.py b/litex/soc/integration/export.py index 487a36041..f04b03fef 100644 --- a/litex/soc/integration/export.py +++ b/litex/soc/integration/export.py @@ -129,7 +129,7 @@ def get_linker_output_format(cpu): def get_linker_regions(regions): r = "MEMORY {\n" for name, region in regions.items(): - r += f"\t{name} : ORIGIN = 0x{region.origin:08x}, LENGTH = 0x{region.length:08x}\n" + r += f"\t{name} : ORIGIN = 0x{region.origin:08x}, LENGTH = 0x{region.size:08x}\n" r += "}\n" return r