diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-12-11 14:31:23 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-04-13 13:45:18 -0700 |
commit | 1cdfdbc6d106cf706c22518a80837e9ed769711b (patch) | |
tree | 2af54df00cc6882391d202d3e9824e6f393cb911 /passes/techmap | |
parent | 4617aa8ccd138d80c1f68b35019a8afdbeb30c9f (diff) | |
download | yosys-1cdfdbc6d106cf706c22518a80837e9ed769711b.tar.gz yosys-1cdfdbc6d106cf706c22518a80837e9ed769711b.tar.bz2 yosys-1cdfdbc6d106cf706c22518a80837e9ed769711b.zip |
Fix S/R comment; thanks @mwkmwkmwk
Diffstat (limited to 'passes/techmap')
-rw-r--r-- | passes/techmap/zinit.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/zinit.cc b/passes/techmap/zinit.cc index f982dbb30..f7c63b8f8 100644 --- a/passes/techmap/zinit.cc +++ b/passes/techmap/zinit.cc @@ -143,7 +143,7 @@ struct ZinitPass : public Pass { /*if (cell->type.in(ID($_DFFSR_NNN_), ID($_DFFSR_NNP_), ID($_DFFSR_NPN_), ID($_DFFSR_NPP_), ID($_DFFSR_PNN_), ID($_DFFSR_PNP_), ID($_DFFSR_PPN_), ID($_DFFSR_PPP_))) { - // TODO: I think I need a $_DFFRS_* cell where R has priority over S... + // TODO: I think I need a $_DFFRS_* cell where S has priority over R... std::swap(cell->connections_.at(ID(R)), cell->connections_.at(ID(S))); } else*/ if (cell->type.in(ID($_DFF_NN0_), ID($_DFF_NN1_), ID($_DFF_NP0_), ID($_DFF_NP1_), |