gensoc/cpuif: do not generate access functions for registers > 64 bits

This commit is contained in:
Florent Kermarrec 2014-08-02 16:42:26 +02:00 committed by Sebastien Bourdeauducq
parent 37968e649b
commit d1ff43faa7
1 changed files with 1 additions and 1 deletions

View File

@ -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: