mirror of https://github.com/YosysHQ/yosys.git
Added init support to SMV back-end
This commit is contained in:
parent
6c6bf4999e
commit
3123c45415
|
@ -218,6 +218,9 @@ struct SmvWorker
|
|||
partial_assignment_wires.insert(wire);
|
||||
|
||||
f << stringf(" %s : unsigned word[%d]; -- %s\n", cid(wire->name), wire->width, log_id(wire));
|
||||
|
||||
if (wire->attributes.count("\\init"))
|
||||
assignments.push_back(stringf("init(%s) := %s;", lvalue(wire), rvalue(wire->attributes.at("\\init"))));
|
||||
}
|
||||
|
||||
for (auto cell : module->cells())
|
||||
|
@ -483,7 +486,6 @@ struct SmvWorker
|
|||
|
||||
if (cell->type == "$dff")
|
||||
{
|
||||
// FIXME: use init property
|
||||
assignments.push_back(stringf("next(%s) := %s;", lvalue(cell->getPort("\\Q")), rvalue(cell->getPort("\\D"))));
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue