mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #1629 from YosysHQ/mwk/edif-z
edif: Just ignore connections to 'z
This commit is contained in:
commit
30642e9570
|
@ -412,6 +412,8 @@ struct EdifBackend : public Backend {
|
|||
for (auto &ref : it.second)
|
||||
log_warning("Exporting x-bit on %s as zero bit.\n", ref.c_str());
|
||||
sig = RTLIL::State::S0;
|
||||
} else if (sig == RTLIL::State::Sz) {
|
||||
continue;
|
||||
} else {
|
||||
for (auto &ref : it.second)
|
||||
log_error("Don't know how to handle %s on %s.\n", log_signal(sig), ref.c_str());
|
||||
|
|
Loading…
Reference in New Issue