Merge pull request #48 from mithro/fix-constants
cpu_interface: Fix indenting on constant generation.
This commit is contained in:
commit
bebaef1e25
|
@ -144,10 +144,10 @@ def get_csr_header(regions, constants, with_access_functions=True):
|
||||||
else:
|
else:
|
||||||
value = str(value)
|
value = str(value)
|
||||||
ctype = "int"
|
ctype = "int"
|
||||||
r += "#define "+name+" "+value+"\n"
|
r += "#define "+name+" "+value+"\n"
|
||||||
if with_access_functions:
|
if with_access_functions:
|
||||||
r += "static inline "+ctype+" "+name.lower()+"_read(void) {\n"
|
r += "static inline "+ctype+" "+name.lower()+"_read(void) {\n"
|
||||||
r += "\treturn "+value+";\n}\n"
|
r += "\treturn "+value+";\n}\n"
|
||||||
|
|
||||||
r += "\n#endif\n"
|
r += "\n#endif\n"
|
||||||
return r
|
return r
|
||||||
|
|
Loading…
Reference in New Issue