Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Timothy Pearson
litex-boards
Commits
c49693fd
Unverified
Commit
c49693fd
authored
4 years ago
by
enjoy-digital
Committed by
GitHub
4 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #24 from dkozel/fix_numato_csr_headers
Fix numato csr headers
parents
d91458c3
4334ba95
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
12 deletions
+9
-12
litex_boards/partner/targets/aller.py
litex_boards/partner/targets/aller.py
+3
-4
litex_boards/partner/targets/nereid.py
litex_boards/partner/targets/nereid.py
+3
-4
litex_boards/partner/targets/tagus.py
litex_boards/partner/targets/tagus.py
+3
-4
No files found.
litex_boards/partner/targets/aller.py
View file @
c49693fd
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
litex_boards/partner/targets/nereid.py
View file @
c49693fd
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
litex_boards/partner/targets/tagus.py
View file @
c49693fd
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment