mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
soc/integration/export: fix incorrect element in get_linker_regions
This commit is contained in:
parent
cfbe3b028a
commit
d4c1c97cf9
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue