T
Thomas Reinemann
Guest
Hi,
usually we have statements like this kind, to copy the value of a signal.
pgen_data : process (sclk) is
begin -- process pgen_data
if rising_edge(sclk) then -- rising clock edge
sfifo_alt <= sfifo_data_in;
end if;
end process pgen_data;
To do it right, we have to figure out the type of the right value and
copy it. During debugging this can be time consuming and can led to
errors. Just my wish, the possibility to copy the type of a signal via
a certain keyword perhaps "copy_type".
Bye Tom
usually we have statements like this kind, to copy the value of a signal.
pgen_data : process (sclk) is
begin -- process pgen_data
if rising_edge(sclk) then -- rising clock edge
sfifo_alt <= sfifo_data_in;
end if;
end process pgen_data;
To do it right, we have to figure out the type of the right value and
copy it. During debugging this can be time consuming and can led to
errors. Just my wish, the possibility to copy the type of a signal via
a certain keyword perhaps "copy_type".
Bye Tom