From 005c07769b317a64ce79b9cd903e882bb4183cdf Mon Sep 17 00:00:00 2001 From: Mateusz Holenko Date: Thu, 11 Jul 2019 10:13:28 +0200 Subject: [PATCH] soc_core: include information about cpu variant in csv and headers --- litex/soc/integration/soc_core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litex/soc/integration/soc_core.py b/litex/soc/integration/soc_core.py index 5de233c78..1fd7917f1 100644 --- a/litex/soc/integration/soc_core.py +++ b/litex/soc/integration/soc_core.py @@ -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":