mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
Add handling of verific OPER_SELECTOR and OPER_WIDE_SELECTOR
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
9cd9f5fc78
commit
2aeb4d4e12
|
@ -569,6 +569,19 @@ bool VerificImporter::import_netlist_instance_cells(Instance *inst, RTLIL::IdStr
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (inst->Type() == OPER_SELECTOR)
|
||||||
|
{
|
||||||
|
module->addPmux(inst_name, State::S0, IN2, IN1, net_map_at(inst->GetOutput()));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (inst->Type() == OPER_WIDE_SELECTOR)
|
||||||
|
{
|
||||||
|
SigSpec out = OUT;
|
||||||
|
module->addPmux(inst_name, SigSpec(State::S0, GetSize(out)), IN2, IN1, out);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if (inst->Type() == OPER_WIDE_TRI) {
|
if (inst->Type() == OPER_WIDE_TRI) {
|
||||||
module->addMux(inst_name, RTLIL::SigSpec(RTLIL::State::Sz, inst->OutputSize()), IN, net_map_at(inst->GetControl()), OUT);
|
module->addMux(inst_name, RTLIL::SigSpec(RTLIL::State::Sz, inst->OutputSize()), IN, net_map_at(inst->GetControl()), OUT);
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue