Unverified Commit c49693fd authored by enjoy-digital's avatar enjoy-digital Committed by GitHub
Browse files

Merge pull request #24 from dkozel/fix_numato_csr_headers

Fix numato csr headers
parents d91458c3 4334ba95
......@@ -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)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment