From 14dbdeb0cbc6356b185ae47ada3aed968b4b083f Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 21 May 2024 10:24:37 +0200 Subject: [PATCH] soc/integration/export: Disable fields_access_function by default. --- litex/soc/integration/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/integration/export.py b/litex/soc/integration/export.py index 3bea515da..b49dab342 100644 --- a/litex/soc/integration/export.py +++ b/litex/soc/integration/export.py @@ -384,7 +384,7 @@ def _generate_csr_fields_access_functions_c(name, region, origin, alignment, csr # CSR Header. -def get_csr_header(regions, constants, csr_base=None, with_csr_base_define=True, with_access_functions=True, with_fields_access_functions=True): +def get_csr_header(regions, constants, csr_base=None, with_csr_base_define=True, with_access_functions=True, with_fields_access_functions=False): """ Generate the CSR header file content. """