Skip to content
Snippets Groups Projects
Commit a1c1e14c authored by Lucian Petrica's avatar Lucian Petrica
Browse files

Fixed address range of readmemh in rtl streamer

parent c5c95197
No related branches found
No related tags found
No related merge requests found
...@@ -76,15 +76,15 @@ initial begin ...@@ -76,15 +76,15 @@ initial begin
//MEM_INIT path must be terminated by / //MEM_INIT path must be terminated by /
`ifdef SYNTHESIS `ifdef SYNTHESIS
if (ID < 10) if (ID < 10)
$readmemh({MEM_INIT,"memblock_",idx+8'd48,".dat"}, mem, 0, 1023); $readmemh({MEM_INIT,"memblock_",idx+8'd48,".dat"}, mem, 0, DEPTH-1);
else else
$readmemh({MEM_INIT,"memblock_",(idx/10)+8'd48,(idx%10)+8'd48,".dat"}, mem, 0, 1023); $readmemh({MEM_INIT,"memblock_",(idx/10)+8'd48,(idx%10)+8'd48,".dat"}, mem, 0, DEPTH-1);
`else `else
$sformat(idx,"%0d",ID); $sformat(idx,"%0d",ID);
if (ID < 10) if (ID < 10)
$readmemh({MEM_INIT,"memblock_",idx[7:0],".dat"}, mem, 0, 1023); $readmemh({MEM_INIT,"memblock_",idx[7:0],".dat"}, mem, 0, DEPTH-1);
else else
$readmemh({MEM_INIT,"memblock_",idx,".dat"}, mem, 0, 1023); $readmemh({MEM_INIT,"memblock_",idx,".dat"}, mem, 0, DEPTH-1);
`endif `endif
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment