Skip to content
Snippets Groups Projects
Commit 980d6d4c authored by Wesley W. Terpstra's avatar Wesley W. Terpstra
Browse files

Fixed memory initialization bug (Altera)

This is the equivalent of commit 53979d4f.
parent 6c705cbc
Branches
Tags
No related merge requests found
......@@ -92,7 +92,6 @@ architecture syn of generic_dpram is
n := n+1;
pos := pos + 1;
end loop;
pos := pos + 1;
end loop;
return tmp;
end f_memarray_to_ramtype;
......@@ -112,7 +111,6 @@ architecture syn of generic_dpram is
n := n+1;
pos := pos + 1;
end loop;
pos := pos + 1;
end loop;
return tmp;
end f_memarray_to_ramtype_bs;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment