diff options
author | clairexen <claire@symbioticeda.com> | 2020-08-20 16:18:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 16:18:40 +0200 |
commit | 1cdb533fa58c8dbb6f8e45665a89134f5184ed40 (patch) | |
tree | 825e87a29bfdf713499921288cfe6fe8c8e4080f /techlibs/common | |
parent | 23719ad46dd13e338851961565858e25c66d63f7 (diff) | |
parent | 522788f0165899b5b73f12ee283b4c135fb86792 (diff) | |
download | yosys-1cdb533fa58c8dbb6f8e45665a89134f5184ed40.tar.gz yosys-1cdb533fa58c8dbb6f8e45665a89134f5184ed40.tar.bz2 yosys-1cdb533fa58c8dbb6f8e45665a89134f5184ed40.zip |
Merge pull request #2319 from YosysHQ/mwk/techmap-celltype-pattern
techmap: Add support for [] wildcards in techmap_celltype.
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_ = ""; |