Bugfix in mapping $tribuf to $_TBUF_

This commit is contained in:
Clifford Wolf 2015-11-05 12:37:43 +01:00
parent ddf3e2dc65
commit f401eeb0cf
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ void simplemap_tribuf(RTLIL::Module *module, RTLIL::Cell *cell)
RTLIL::Cell *gate = module->addCell(NEW_ID, "$_TBUF_");
gate->add_strpool_attribute("\\src", cell->get_strpool_attribute("\\src"));
gate->setPort("\\A", sig_a[i]);
gate->setPort("\\E", sig_e[i]);
gate->setPort("\\E", sig_e);
gate->setPort("\\Y", sig_y[i]);
}
}