diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-04-21 15:45:05 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-05-14 10:33:56 -0700 |
commit | 6c34945371a0446159423b0d70f9f10dbc2c4d07 (patch) | |
tree | 0f8cdc9be3d28a681eaee006442d6e65d9b92f79 /techlibs/ice40 | |
parent | b65610fb628cfd38edcab3c64507477a58cbdd10 (diff) | |
download | yosys-6c34945371a0446159423b0d70f9f10dbc2c4d07.tar.gz yosys-6c34945371a0446159423b0d70f9f10dbc2c4d07.tar.bz2 yosys-6c34945371a0446159423b0d70f9f10dbc2c4d07.zip |
xilinx/ice40/ecp5: zinit requires selected wires, so select them all
Diffstat (limited to 'techlibs/ice40')
-rw-r--r-- | techlibs/ice40/synth_ice40.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/ice40/synth_ice40.cc b/techlibs/ice40/synth_ice40.cc index f2270dbca..27850b075 100644 --- a/techlibs/ice40/synth_ice40.cc +++ b/techlibs/ice40/synth_ice40.cc @@ -362,7 +362,7 @@ struct SynthIce40Pass : public ScriptPass run("simplemap t:$dff"); } if ((abc9 && dff) || help_mode) - run("zinit -all t:$_DFF_?_ t:$_DFFE_??_ t:$__DFFS*", "(only if -abc9 and -dff"); + run("zinit -all w:* t:$_DFF_?_ t:$_DFFE_??_ t:$__DFFS*", "(only if -abc9 and -dff"); run("techmap -map +/ice40/ff_map.v"); run("opt_expr -mux_undef"); run("simplemap"); |