mirror of https://github.com/YosysHQ/yosys.git
aiger2: Convert x-states to zeroes
This commit is contained in:
parent
4c0a8a1326
commit
b8f389370b
|
@ -549,6 +549,8 @@ struct Index {
|
||||||
return CTRUE;
|
return CTRUE;
|
||||||
else if (bit == State::S0)
|
else if (bit == State::S0)
|
||||||
return CFALSE;
|
return CFALSE;
|
||||||
|
else if (bit == State::Sx)
|
||||||
|
return CFALSE;
|
||||||
else
|
else
|
||||||
log_error("Unhandled state %s\n", log_signal(bit));
|
log_error("Unhandled state %s\n", log_signal(bit));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue