3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-24 13:18:56 +00:00

Fixed handling of $_XOR_ in SAT generator

This commit is contained in:
Clifford Wolf 2013-06-09 14:01:50 +02:00
parent 0efde13775
commit b7ba90910d
2 changed files with 4 additions and 2 deletions

View file

@ -423,7 +423,9 @@ rerun_solver:
value.bits.push_back(modelValues.at(info.offset+i) ? RTLIL::State::S1 : RTLIL::State::S0);
if (info.timestep != last_timestep) {
const char *hline = "--------------------------------------------------------";
const char *hline = "---------------------------------------------------------------------------------------------------"
"---------------------------------------------------------------------------------------------------"
"---------------------------------------------------------------------------------------------------";
if (last_timestep == -2) {
log(seq_len > 0 ? " Time " : " ");
log("%-*s %10s %10s %*s\n", maxModelName+10, "Signal Name", "Dec", "Hex", maxModelWidth+5, "Bin");