mirror of https://github.com/YosysHQ/yosys.git
Fixed finish_addr handling in $readmemh/$readmemb
This commit is contained in:
parent
75bf7416f0
commit
fe9315b7a1
|
@ -2468,12 +2468,12 @@ AstNode *AstNode::readmem(bool is_readmemh, std::string mem_filename, AstNode *m
|
|||
block->children.back()->children[0]->id2ast = memory;
|
||||
}
|
||||
|
||||
if ((cursor == finish_addr) || (increment > 0 && cursor > range_max) || (increment < 0 && cursor < range_min))
|
||||
break;
|
||||
cursor += increment;
|
||||
if ((cursor == finish_addr+increment) || (increment > 0 && cursor > range_max) || (increment < 0 && cursor < range_min))
|
||||
break;
|
||||
}
|
||||
|
||||
if ((cursor == finish_addr) || (increment > 0 && cursor > range_max) || (increment < 0 && cursor < range_min))
|
||||
if ((cursor == finish_addr+increment) || (increment > 0 && cursor > range_max) || (increment < 0 && cursor < range_min))
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue