diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-08-16 12:55:25 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-08-16 12:55:25 +0200 |
commit | 9c33172ece6969dbca8656789fda8135619ce615 (patch) | |
tree | 0ce8de8da0fd11c04afaef2ad601e5ccf8550fe7 /techlibs | |
parent | ff50bc2ac304fcec5746939e155dcac2b01665df (diff) | |
download | yosys-9c33172ece6969dbca8656789fda8135619ce615.tar.gz yosys-9c33172ece6969dbca8656789fda8135619ce615.tar.bz2 yosys-9c33172ece6969dbca8656789fda8135619ce615.zip |
Added tribuf command
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/ice40/synth_ice40.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/techlibs/ice40/synth_ice40.cc b/techlibs/ice40/synth_ice40.cc index 4499263a3..788835f1d 100644 --- a/techlibs/ice40/synth_ice40.cc +++ b/techlibs/ice40/synth_ice40.cc @@ -82,6 +82,7 @@ struct SynthIce40Pass : public Pass { log(" flatten: (unless -noflatten)\n"); log(" proc\n"); log(" flatten\n"); + log(" tribuf -logic\n"); log("\n"); log(" coarse:\n"); log(" synth -run coarse\n"); @@ -201,6 +202,7 @@ struct SynthIce40Pass : public Pass { { Pass::call(design, "proc"); Pass::call(design, "flatten"); + Pass::call(design, "tribuf -logic"); } if (check_label(active, run_from, run_to, "coarse")) |