Forum Discussion
Altera_Forum
Honored Contributor
17 years agoYes, the present unreasonable construct wouldn't be possible in a Verilog always @ (posedge C) block.
Unfortunately, I don't know what's the intended behaviour, under which conditions the action A <= '0'; shall be peformed. A possible synthesizable variant would be this:if C'EVENT AND C='1' then
if V='0' then
A <= '1';
else
A <= '0';
end if;
end if;