R
Richard
Guest
Hello
I have I quick question:
I have a combinatorical process which should be activated everytime the
input changes. In this process the bits should be stored in the following
way:
signal c: std_ulogic_vector(199 downto 0);
comb : process (inp)
begin
for i in 0 to 599 loop
c(i) <= inp(3*i);
end loop;
Unfortunately the compiler doesnt allow loops in this kind of process
(sequentiell statement). Is there any other loop construct which I could use
to perform this easy assignment?
Thanks a lot!
I have I quick question:
I have a combinatorical process which should be activated everytime the
input changes. In this process the bits should be stored in the following
way:
signal c: std_ulogic_vector(199 downto 0);
comb : process (inp)
begin
for i in 0 to 599 loop
c(i) <= inp(3*i);
end loop;
Unfortunately the compiler doesnt allow loops in this kind of process
(sequentiell statement). Is there any other loop construct which I could use
to perform this easy assignment?
Thanks a lot!