3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

Fix S/R comment; thanks @mwkmwkmwk

This commit is contained in:
Eddie Hung 2019-12-11 14:31:23 -08:00
parent 4617aa8ccd
commit 1cdfdbc6d1

View file

@ -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_),