Forum Discussion
Altera_Forum
Honored Contributor
17 years agoAnother way could be to use two separate process blocks as follows
------------------------------------------------ ARCHITECTURE arc OF test1 IS begin process (C) begin if (C'EVENT and C='1') then if V='0' then A <= '1'; else A <= '0'; end if; end if; end process; process (C) begin if (C'EVENT and C='0') then end if; end process; end arc; ------------------------------------------------ Of course you will have to fill in the suitable sequential statements in the last if block.