Fixed $_NOR vs. $_NOR_ typo in abc.cc

This commit is contained in:
Clifford Wolf 2014-09-16 12:45:05 +02:00
parent ae02d9cb9a
commit 9ae559b990
1 changed files with 1 additions and 1 deletions

View File

@ -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");