T
Thomas Heller
Guest
Up to now, I have always used processes to create flipflops:
process(clock)
begin
if rising_edge(clock) then
a <= b;
end if;
end process;
Is the following code exactly equivalent? It is much
less verbose and much more readable:
a <= b when rising_edge(clock);
Thanks,
Thomas
process(clock)
begin
if rising_edge(clock) then
a <= b;
end if;
end process;
Is the following code exactly equivalent? It is much
less verbose and much more readable:
a <= b when rising_edge(clock);
Thanks,
Thomas