mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-24 13:18:56 +00:00
Added $anyseq cell type
This commit is contained in:
parent
2733994aeb
commit
bdc316db50
11 changed files with 40 additions and 11 deletions
|
@ -762,7 +762,7 @@ void AstNode::detectSignWidthWorker(int &width_hint, bool &sign_hint, bool *foun
|
|||
break;
|
||||
|
||||
case AST_FCALL:
|
||||
if (str == "\\$anyconst") {
|
||||
if (str == "\\$anyconst" || str == "\\$anyseq") {
|
||||
if (GetSize(children) == 1) {
|
||||
while (children[0]->simplify(true, false, false, 1, -1, false, true) == true) { }
|
||||
if (children[0]->type != AST_CONSTANT)
|
||||
|
@ -1465,7 +1465,7 @@ RTLIL::SigSpec AstNode::genRTLIL(int width_hint, bool sign_hint)
|
|||
} break;
|
||||
|
||||
case AST_FCALL: {
|
||||
if (str == "\\$anyconst")
|
||||
if (str == "\\$anyconst" || str == "\\$anyseq")
|
||||
{
|
||||
string myid = stringf("%s$%d", str.c_str() + 1, autoidx++);
|
||||
int width = width_hint;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue