Fixed flatten $meminit handling

This commit is contained in:
Clifford Wolf 2015-07-30 21:43:41 +02:00
parent eac0bcd7d3
commit 3860c9a9f2
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ struct TechmapWorker
port_signal_map.apply(it2.second);
}
if (c->type == "$memrd" || c->type == "$memwr") {
if (c->type == "$memrd" || c->type == "$memwr" || c->type == "$meminit") {
IdString memid = c->getParam("\\MEMID").decode_string();
log_assert(memory_renames.count(memid));
c->setParam("\\MEMID", Const(memory_renames[memid].str()));