Compare commits

...

1 Commits

Author SHA1 Message Date
morgan c4ea3a7bf3 refactor write_rustc_cfg_file 2023-10-26 12:34:56 +08:00
1 changed files with 2 additions and 8 deletions

View File

@ -12,11 +12,5 @@ def write_mem_file(soc, filename):
def write_rustc_cfg_file(soc, filename):
with open(filename, "w") as f:
for name, origin, busword, obj in soc.get_csr_regions():
f.write("has_{}\n".format(name.lower()))
for name, value in soc.get_constants():
if name.upper().startswith("CONFIG_"):
if value is None:
f.write("{}\n".format(name.lower()[7:]))
else:
f.write("{}=\"{}\"\n".format(name.lower()[7:], str(value)))
f.write(cpu_interface.get_rust_cfg(
soc.get_csr_regions(), soc.get_constants()))