mirror of https://github.com/YosysHQ/yosys.git
Fixed bug in memory_share for memory ports with different ABITS
This commit is contained in:
parent
7a33b9892a
commit
cad40fc874
|
@ -619,6 +619,12 @@ struct MemoryShareWorker
|
|||
|
||||
RTLIL::SigBit this_en_active = module->ReduceOr(NEW_ID, this_en);
|
||||
|
||||
if (GetSize(last_addr) < GetSize(this_addr))
|
||||
last_addr.extend_u0(GetSize(this_addr));
|
||||
else
|
||||
this_addr.extend_u0(GetSize(last_addr));
|
||||
|
||||
wr_ports[i]->setParam("\\ABITS", GetSize(this_addr));
|
||||
wr_ports[i]->setPort("\\ADDR", module->Mux(NEW_ID, last_addr, this_addr, this_en_active));
|
||||
wr_ports[i]->setPort("\\DATA", module->Mux(NEW_ID, last_data, this_data, this_en_active));
|
||||
|
||||
|
|
Loading…
Reference in New Issue