mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
gensoc/cpuif: do not generate access functions for registers > 64 bits
This commit is contained in:
parent
37968e649b
commit
d1ff43faa7
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ def _get_rw_functions(reg_name, reg_base, nwords, busword, read_only):
|
|||
|
||||
size = nwords*busword
|
||||
if size > 64:
|
||||
raise NotImplementedError("Register too large")
|
||||
return r
|
||||
elif size > 32:
|
||||
ctype = "unsigned long long int"
|
||||
elif size > 16:
|
||||
|
|
Loading…
Reference in a new issue