Forum Discussion
Altera_Forum
Honored Contributor
12 years ago --- Quote Start --- Tnx for quick response. The "No it is not" answer refers to customary or synthesizable or both of them? Tnx --- Quote End --- unfortunately I disgree with the "no..." from fpga_guru011. The main differences are to do with priority issues. the case statement is equivalent to multiple parallel ifs. Most of everyday code is made up of " if" or "case" inside each other. if rising_edge(clk) then if enable = '1' then case .... when .... if... end if; end case; end if; end if;