diff options
author | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-08-02 12:31:25 +0200 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-08-02 22:46:48 +0200 |
commit | 522788f0165899b5b73f12ee283b4c135fb86792 (patch) | |
tree | 0482665dc43787b076fa96593dbc4b3c0e9d7b61 /techlibs/common | |
parent | c39ebe6ae0e41cf9a84da852fa3cf9f71937a9b2 (diff) | |
download | yosys-522788f0165899b5b73f12ee283b4c135fb86792.tar.gz yosys-522788f0165899b5b73f12ee283b4c135fb86792.tar.bz2 yosys-522788f0165899b5b73f12ee283b4c135fb86792.zip |
techmap: Add support for [] wildcards in techmap_celltype.
Fixes #1826.
Diffstat (limited to 'techlibs/common')
-rw-r--r-- | techlibs/common/abc9_map.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/common/abc9_map.v b/techlibs/common/abc9_map.v index 6ed90b5f5..b00e0e6a8 100644 --- a/techlibs/common/abc9_map.v +++ b/techlibs/common/abc9_map.v @@ -1,5 +1,5 @@ `ifdef DFF -(* techmap_celltype = "$_DFF_N_ $_DFF_P_" *) +(* techmap_celltype = "$_DFF_[PN]_" *) module $_DFF_x_(input C, D, output Q); parameter [0:0] _TECHMAP_WIREINIT_Q_ = 1'bx; parameter _TECHMAP_CELLTYPE_ = ""; |