projects
/
litex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
37968e6
)
gensoc/cpuif: do not generate access functions for registers > 64 bits
author
Florent Kermarrec
<florent@enjoy-digital.fr>
Sat, 2 Aug 2014 14:42:26 +0000
(16:42 +0200)
committer
Sebastien Bourdeauducq
<sb@m-labs.hk>
Mon, 4 Aug 2014 14:38:19 +0000
(22:38 +0800)
misoclib/gensoc/cpuif.py
patch
|
blob
|
history
diff --git
a/misoclib/gensoc/cpuif.py
b/misoclib/gensoc/cpuif.py
index 2646711d8eea19428e471105d0132e4927cd6074..994f9ddb3a337e4acb4795b1d0125c0db2143adb 100644
(file)
--- a/
misoclib/gensoc/cpuif.py
+++ b/
misoclib/gensoc/cpuif.py
@@
-37,7
+37,7
@@
def _get_rw_functions(reg_name, reg_base, nwords, busword, read_only):
size = nwords*busword
if size > 64:
- r
aise NotImplementedError("Register too large")
+ r
eturn r
elif size > 32:
ctype = "unsigned long long int"
elif size > 16: