mirror of https://github.com/YosysHQ/yosys.git
memory_dff: Fix typo when checking init value
Signed-off-by: David Shah <davey1576@gmail.com>
This commit is contained in:
parent
fdf7c42181
commit
2b16d4ed3d
|
@ -41,7 +41,7 @@ struct MemoryDffWorker
|
|||
if (wire->attributes.count("\\init") == 0)
|
||||
continue;
|
||||
SigSpec sig = sigmap(wire);
|
||||
Const initval = wire->attributes.count("\\init");
|
||||
Const initval = wire->attributes.at("\\init");
|
||||
for (int i = 0; i < GetSize(sig) && i < GetSize(initval); i++)
|
||||
if (initval[i] == State::S0 || initval[i] == State::S1)
|
||||
init_bits.insert(sig[i]);
|
||||
|
|
Loading…
Reference in New Issue