diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-01-02 15:44:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-02 15:44:57 +0100 |
commit | da1c8d8d3d531a72479fd22c86870b0168e156ab (patch) | |
tree | f28df7f8bae11686cbc512712aa3258ed80093f3 /techlibs/ice40 | |
parent | 00330c741a52a96e7ec9ed53fde7de591e9f9c46 (diff) | |
parent | 17b283135658b84a0dfeec8b35f7d2bfe782be19 (diff) | |
download | yosys-da1c8d8d3d531a72479fd22c86870b0168e156ab.tar.gz yosys-da1c8d8d3d531a72479fd22c86870b0168e156ab.tar.bz2 yosys-da1c8d8d3d531a72479fd22c86870b0168e156ab.zip |
Merge pull request #772 from whitequark/synth_lut
synth: add k-LUT mode
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 626f6d381..f900453e8 100644 --- a/techlibs/ice40/synth_ice40.cc +++ b/techlibs/ice40/synth_ice40.cc @@ -226,7 +226,7 @@ struct SynthIce40Pass : public ScriptPass if (check_label("coarse")) { - run("synth -run coarse"); + run("synth -lut 4 -run coarse"); } if (!nobram && check_label("bram", "(skip if -nobram)")) |