M
MM
Guest
Hi all,
Is the code below valid (including for synthesis)?
signal clk : std_logic_vector(0 to 3);
PROC:
process (clk)
begin
LP1:
for i in 0 to NUM loop
if clk(i)'event and clk(i)='0' then
queue(i) <= ldata(i);
end if;
end loop;
end process;
Thanks,
/Mikhail
Is the code below valid (including for synthesis)?
signal clk : std_logic_vector(0 to 3);
PROC:
process (clk)
begin
LP1:
for i in 0 to NUM loop
if clk(i)'event and clk(i)='0' then
queue(i) <= ldata(i);
end if;
end loop;
end process;
Thanks,
/Mikhail