From: Greg Davill Date: Mon, 27 Apr 2020 10:40:25 +0000 (+0930) Subject: build/trellis: add verilog_read -defer option to yosys script X-Git-Tag: 24jan2021_ls180~433^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=642c4b303606e13f2d4c8ced0e78a4b651f482b9;p=litex.git build/trellis: add verilog_read -defer option to yosys script --- diff --git a/litex/build/lattice/trellis.py b/litex/build/lattice/trellis.py index a9ae49be..fa19b919 100644 --- a/litex/build/lattice/trellis.py +++ b/litex/build/lattice/trellis.py @@ -49,7 +49,10 @@ def _build_lpf(named_sc, named_pc, build_name): # Yosys/Nextpnr Helpers/Templates ------------------------------------------------------------------ _yosys_template = [ + "verilog_defaults -push", + "verilog_defaults -add -defer", "{read_files}", + "verilog_defaults -pop", "attrmap -tocase keep -imap keep=\"true\" keep=1 -imap keep=\"false\" keep=0 -remove keep=0", "synth_ecp5 -abc9 {nwl} -json {build_name}.json -top {build_name}", ]