3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-13 04:28:18 +00:00
This commit is contained in:
Miodrag Milanovic 2022-01-31 13:45:28 +01:00
parent eabd0ff115
commit 1b5ff92e62

View file

@ -768,7 +768,6 @@ struct SimInstance
retVal = true; retVal = true;
} }
} }
//log("signal: %s fst: %s sim: %s\n", log_id(item.first), log_signal(fst_val), log_signal(sim_val));
} }
for (auto child : children) for (auto child : children)
retVal |= child.second->checkSignals(time); retVal |= child.second->checkSignals(time);
@ -1048,6 +1047,7 @@ struct SimWorker : SimShared
fst->reconstructAllAtTimes(edges); fst->reconstructAllAtTimes(edges);
bool initial = false; bool initial = false;
int cycle = 0; int cycle = 0;
log("Co-simulation from %zu%s to %zu%s\n", startCount, fst->getTimescaleString(), stopCount, fst->getTimescaleString());
for(auto &time : edges) { for(auto &time : edges) {
log("Co-simulating cycle %d [%zu%s].\n", cycle+1, time, fst->getTimescaleString()); log("Co-simulating cycle %d [%zu%s].\n", cycle+1, time, fst->getTimescaleString());
for(auto &item : inputs) { for(auto &item : inputs) {