mirror of https://github.com/YosysHQ/yosys.git
Fixed $_NOR vs. $_NOR_ typo in abc.cc
This commit is contained in:
parent
ae02d9cb9a
commit
9ae559b990
|
@ -166,7 +166,7 @@ static void extract_cell(RTLIL::Cell *cell, bool keepff)
|
|||
return;
|
||||
}
|
||||
|
||||
if (cell->type.in("$_AND_", "$_NAND_", "$_OR_", "$_NOR", "$_XOR_", "$_XNOR_"))
|
||||
if (cell->type.in("$_AND_", "$_NAND_", "$_OR_", "$_NOR_", "$_XOR_", "$_XNOR_"))
|
||||
{
|
||||
RTLIL::SigSpec sig_a = cell->getPort("\\A");
|
||||
RTLIL::SigSpec sig_b = cell->getPort("\\B");
|
||||
|
|
Loading…
Reference in New Issue