S
Suman
Guest
Hello Experts,
In IEEE 1800-2005 LRM (Sec 11.3), it says :
"The always_ff block imposes the restriction that it contains one and
only one event control and no blocking timing controls".
My question is, what is "blocking timing control" ? The LRM does not
say anything about it.
Should the following piece get synthesized ?
----------
always_ff @(posedge clock iff reset == 1 or negedge reset)
if (!reset)
#1 current_state <= S0; // <------ Is there any blocking timing
control ?
else
current_state <= next_state;
------------
Thanks in advance,
Suman.
In IEEE 1800-2005 LRM (Sec 11.3), it says :
"The always_ff block imposes the restriction that it contains one and
only one event control and no blocking timing controls".
My question is, what is "blocking timing control" ? The LRM does not
say anything about it.
Should the following piece get synthesized ?
----------
always_ff @(posedge clock iff reset == 1 or negedge reset)
if (!reset)
#1 current_state <= S0; // <------ Is there any blocking timing
control ?
else
current_state <= next_state;
------------
Thanks in advance,
Suman.