diff options
author | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-02-03 14:57:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-03 14:57:17 +0100 |
commit | 34d2fbd2f96a8789aa7eb655318308e11949eb7a (patch) | |
tree | 246fac88cc076f041cb9194bf6e4f954d50fd78c /techlibs/gowin | |
parent | 7033503cd9e40e16c11fe6c805a436b0e23989dd (diff) | |
download | yosys-34d2fbd2f96a8789aa7eb655318308e11949eb7a.tar.gz yosys-34d2fbd2f96a8789aa7eb655318308e11949eb7a.tar.bz2 yosys-34d2fbd2f96a8789aa7eb655318308e11949eb7a.zip |
Add opt_lut_ins pass. (#1673)
Diffstat (limited to 'techlibs/gowin')
-rw-r--r-- | techlibs/gowin/synth_gowin.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/techlibs/gowin/synth_gowin.cc b/techlibs/gowin/synth_gowin.cc index c5b41b503..99dd3834b 100644 --- a/techlibs/gowin/synth_gowin.cc +++ b/techlibs/gowin/synth_gowin.cc @@ -246,6 +246,7 @@ struct SynthGowinPass : public ScriptPass if (check_label("map_cells")) { run("techmap -map +/gowin/cells_map.v"); + run("opt_lut_ins -tech gowin"); run("setundef -undriven -params -zero"); run("hilomap -singleton -hicell VCC V -locell GND G"); if (!noiopads || help_mode) |