Fixed module->addPmux()

This commit is contained in:
Clifford Wolf 2014-08-30 18:17:22 +02:00
parent 66763fad4e
commit dfbd7dd15a
1 changed files with 0 additions and 1 deletions

View File

@ -1309,7 +1309,6 @@ DEF_METHOD(LogicOr, 1, "$logic_or")
RTLIL::Cell* RTLIL::Module::add ## _func(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_s, RTLIL::SigSpec sig_y) { \
RTLIL::Cell *cell = addCell(name, _type); \
cell->parameters["\\WIDTH"] = sig_a.size(); \
cell->parameters["\\WIDTH"] = sig_b.size(); \
if (_pmux) cell->parameters["\\S_WIDTH"] = sig_s.size(); \
cell->setPort("\\A", sig_a); \
cell->setPort("\\B", sig_b); \