Merge pull request from dkozel/fix_numato_csr_headers

Fix numato csr headers
This commit is contained in:
enjoy-digital 2019-12-14 11:23:09 +01:00 committed by GitHub
commit c49693fdf3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 12 deletions
litex_boards/partner/targets

View file

@ -179,10 +179,9 @@ class AllerSoC(SoCSDRAM):
]
def generate_software_header(self, filename):
csr_header = get_csr_header(self.get_csr_regions(),
self.get_constants(),
with_access_functions=False,
with_shadow_base=False)
csr_header = get_csr_header(self.csr_regions,
self.constants,
with_access_functions=False)
tools.write_to_file(filename, csr_header)

View file

@ -176,10 +176,9 @@ class NereidSoC(SoCSDRAM):
]
def generate_software_header(self, filename):
csr_header = get_csr_header(self.get_csr_regions(),
self.get_constants(),
with_access_functions=False,
with_shadow_base=False)
csr_header = get_csr_header(self.csr_regions,
self.constants,
with_access_functions=False)
tools.write_to_file(filename, csr_header)

View file

@ -177,10 +177,9 @@ class TagusSoC(SoCSDRAM):
]
def generate_software_header(self, filename):
csr_header = get_csr_header(self.get_csr_regions(),
self.get_constants(),
with_access_functions=False,
with_shadow_base=False)
csr_header = get_csr_header(self.csr_regions,
self.constants,
with_access_functions=False)
tools.write_to_file(filename, csr_header)