mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-29 11:55:52 +00:00
Support import of $future_ff
This commit is contained in:
parent
9c255c98b1
commit
27ac912709
5 changed files with 38 additions and 0 deletions
|
@ -1142,6 +1142,11 @@ bool VerificImporter::import_netlist_instance_cells(Instance *inst, RTLIL::IdStr
|
|||
module->connect(operatorOutput(inst),module->OriginalTag(new_verific_id(inst), tag, operatorInput(inst)));
|
||||
return true;
|
||||
}
|
||||
if (inst->Type() == OPER_YOSYSHQ_FUTURE_FF)
|
||||
{
|
||||
module->connect(operatorOutput(inst),module->FutureFF(new_verific_id(inst), operatorInput(inst)));
|
||||
return true;
|
||||
}
|
||||
|
||||
#undef IN
|
||||
#undef IN1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue