Forum Discussion
Altera_Forum
Honored Contributor
9 years agoWrite a lot of data
I'm considering two options. The first:
case (address) is
when X"00500" => byte0 <= data;
when X"00501" => byte1 <= data;
when X"00502" => byte2 <= data;
-- and so on
end case;...
Altera_Forum
Honored Contributor
9 years agoThe second example will infer a ram if the code behaves correcly. I dont know if the first example can infer a ram as byte0/1 etc are separate signals.
Why not try them and see the results?