Altera_Forum
Honored Contributor
16 years agoCannot Synthesize initialized RAM logic!!
Hello,
i wanted to initialize two two-dimensional arrays and used the following code segments:parameter MEM_SIZE = 128;
reg sigma_d2n;
reg Xn_k;
initial
begin
index=127;
for(k=0;k<MEM_SIZE;k=k+1)
begin
sigma_d2n=1;
Xn_k=15'b01;
end
endnow while doing analysis and synthesis, quartus (Quartus II 7.2 sp3) is showing the following error messege: Error: Cannot synthesize initialized RAM logic "Xn_k"
Error: Cannot synthesize initialized RAM logic "Xn_k__dual"
Error: Can't elaborate inferred hierarchy "lpm_divide:Div0"
Error: Quartus II Analysis & Synthesis was unsuccessful. 3 errors, 28 warnings
Info: Allocated 255 megabytes of memory during processing
Error: Processing ended: Tue Jun 09 17:12:38 2009
Error: Elapsed time: 00:01:51can anyone suggest any solution? Thanks in advance!