Forum Discussion
Altera_Forum
Honored Contributor
13 years agoIt's a non-synthesizable edge sensitive always block structure.
You need to follow the templatealways @( )
begin
if (<asynchronous condition>)
begin
// asynchronous action
end
else
begin
// synchronous action
end
// you have additional code here, conflicting with synchronous or asynchronous actions
end