3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-05-02 21:37:04 +00:00

width issues

dff cell for more than one registers
This commit is contained in:
Ahmed Irfan 2014-01-15 17:36:33 +01:00
parent 8661626157
commit 3a1490888d
2 changed files with 89 additions and 66 deletions

View file

@ -101,7 +101,7 @@ namespace RTLIL
return std::string(*this) < std::string(rhs);
}
void check() const {
assert(empty() || (size() >= 2 && (at(0) == '$' || at(0) == '\\')));
//assert(empty() || (size() >= 2 && (at(0) == '$' || at(0) == '\\')));
}
};
#endif