Skip to content

Commit

Permalink
Merge pull request #467 from antmicro/region_type_fix
Browse files Browse the repository at this point in the history
soc_core: Fix region type generation
  • Loading branch information
enjoy-digital authored Apr 15, 2020
2 parents d44fe18 + 77a05b7 commit a298a9e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions litex/soc/integration/soc_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@ def do_finalize(self):
for region in self.bus.regions.values():
region.length = region.size
region.type = "cached" if region.cached else "io"
if region.linker:
region.type += "+linker"
self.csr_regions = self.csr.regions
for name, value in self.config.items():
self.add_config(name, value)
Expand Down

0 comments on commit a298a9e

Please sign in to comment.