soc_core: include information about cpu variant in csv and headers

This commit is contained in:
Mateusz Holenko 2019-07-11 10:13:28 +02:00
parent d3aaaf5e6c
commit 005c07769b
1 changed files with 1 additions and 0 deletions

View File

@ -239,6 +239,7 @@ class SoCCore(Module):
# Add CPU
self.config["CPU_TYPE"] = str(cpu_type).upper()
self.config["CPU_VARIANT"] = str(cpu_variant).upper()
if cpu_type is not None:
# CPU selection / instance
if cpu_type == "lm32":