From 254504e73f16f90bef19978e4cbf643da2575865 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 23 Nov 2015 19:12:58 +0100 Subject: [PATCH] soc/integration/builder: export constants and memory_regions with csr_csv --- litex/soc/integration/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/integration/builder.py b/litex/soc/integration/builder.py index 14ab8ba8d..45439ef09 100644 --- a/litex/soc/integration/builder.py +++ b/litex/soc/integration/builder.py @@ -94,7 +94,7 @@ class Builder: if self.csr_csv is not None: with open(self.csr_csv, "w") as f: - f.write(cpu_interface.get_csr_csv(csr_regions)) + f.write(cpu_interface.get_csr_csv(csr_regions, constants, memory_regions)) def _prepare_software(self): for name, src_dir in self.software_packages: