mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
Merge pull request #24 from dkozel/fix_numato_csr_headers
Fix numato csr headers
This commit is contained in:
commit
c49693fdf3
3 changed files with 9 additions and 12 deletions
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue