3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 09:55:20 +00:00

smt2 mem init bugfix

This commit is contained in:
Clifford Wolf 2016-09-08 18:08:15 +02:00
parent 2c0d818296
commit 3ceba145d5

View file

@ -742,7 +742,7 @@ struct Smt2Worker
for (int i = 0; i < memsize; i++)
{
if (GetSize(init_data) < i*width)
if (i*width >= GetSize(init_data))
break;
Const initword = init_data.extract(i*width, width, State::Sx);
@ -752,6 +752,7 @@ struct Smt2Worker
if (bit == State::S0 || bit == State::S1)
gen_init_constr = true;
if (gen_init_constr) {
init_list.push_back(stringf("(= (select (|%s#%d#0| state) #b%s) #b%s) ; %s[%d]",
get_id(module), arrayid, Const(i, abits).as_string().c_str(),
initword.as_string().c_str(), get_id(cell), i));
@ -759,6 +760,7 @@ struct Smt2Worker
}
}
}
}
for (auto c : hiercells) {
assert_list.push_back(stringf("(|%s_a| (|%s_h %s| state))", get_id(c->type), get_id(module), get_id(c->name)));