K
KJ
Guest
<snip>
ReadFile("image" & integer'image(image_cnt) & ".bmp");
Kevin Jennings
if image_cnt=0 then
ReadFile("image0.bmp");
elsif image_cnt=1 then
ReadFile("image1.bmp");
...
elsif image_cnt=127 then
ReadFile("image127.bmp");
end if;
end if;
end if;
end process;
How can I include the "image_cnt" value
into the string of the image name in an elegant way ?
ReadFile("image" & integer'image(image_cnt) & ".bmp");
Kevin Jennings