diff options
author | N. Engelhardt <nak@yosyshq.com> | 2023-03-01 09:49:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-01 09:49:14 +0100 |
commit | 1a3ff0d9267384dd8cd2ab4810fc561662f23b06 (patch) | |
tree | 284172d33ca0645fcc21a77a9f5264574b873e16 /techlibs/gatemate/synth_gatemate.cc | |
parent | bb28e48136fcd881090dca9b0c31429a91e6c1d4 (diff) | |
parent | 2c7ba0e75225dff710fb7c5e87dd43bf881dcdd2 (diff) | |
download | yosys-1a3ff0d9267384dd8cd2ab4810fc561662f23b06.tar.gz yosys-1a3ff0d9267384dd8cd2ab4810fc561662f23b06.tar.bz2 yosys-1a3ff0d9267384dd8cd2ab4810fc561662f23b06.zip |
Merge pull request #3688 from pu-cc/gatemate-reginit
Diffstat (limited to 'techlibs/gatemate/synth_gatemate.cc')
-rw-r--r-- | techlibs/gatemate/synth_gatemate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/gatemate/synth_gatemate.cc b/techlibs/gatemate/synth_gatemate.cc index dd4fde643..1d46d7929 100644 --- a/techlibs/gatemate/synth_gatemate.cc +++ b/techlibs/gatemate/synth_gatemate.cc @@ -283,7 +283,7 @@ struct SynthGateMatePass : public ScriptPass if (check_label("map_regs"))
{
run("opt_clean");
- run("dfflegalize -cell $_DFFE_????_ x -cell $_DLATCH_???_ x");
+ run("dfflegalize -cell $_DFFE_????_ 01 -cell $_DLATCH_???_ 01");
run("techmap -map +/gatemate/reg_map.v");
run("opt_expr -mux_undef");
run("simplemap");
|