Guest
#2228026
I've come across this in some code, and I'm really curious what it does:
if rising_edge(clk) THEN
--do some flip flop things
if rising_edge(clk)THEN
--do other flip flop things
end if;
end if;
Does this code make it take 2 rising edges to get to the "inner" if
statement? or is the second if statement completely redundant?
Thanks, any help is appreciated.