From: Vadim Kaushan Date: Fri, 31 Jan 2020 15:53:50 +0000 (+0300) Subject: Pass --csr-json to the Builder X-Git-Tag: 24jan2021_ls180~697^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eb49ec217e4ba1136eaef5b18b759f6a38f456a5;p=litex.git Pass --csr-json to the Builder --- diff --git a/litex/soc/integration/builder.py b/litex/soc/integration/builder.py index 49951d98..06678bcb 100644 --- a/litex/soc/integration/builder.py +++ b/litex/soc/integration/builder.py @@ -211,5 +211,6 @@ def builder_argdict(args): "compile_software": not args.no_compile_software, "compile_gateware": not args.no_compile_gateware, "gateware_toolchain_path": args.gateware_toolchain_path, - "csr_csv": args.csr_csv + "csr_csv": args.csr_csv, + "csr_json": args.csr_json, }