diff --git a/kernel/sigtools.h b/kernel/sigtools.h index 7082ace4c..a9419f876 100644 --- a/kernel/sigtools.h +++ b/kernel/sigtools.h @@ -421,6 +421,14 @@ struct SigMap apply(sig); return sig; } + + RTLIL::SigSpec allbits() const + { + RTLIL::SigSpec sig; + for (auto &it : bits) + sig.append(SigBit(it.first.first, it.first.second)); + return sig; + } }; YOSYS_NAMESPACE_END