Question d’entretien chez Intel Corporation

In Verilog what is the difference between a blocking and non-blocking statement?

Réponse à la question d'entretien

Utilisateur anonyme

27 juin 2012

Blocking :B = A + 1 Non-blocking :B <= A + 1.Blocking gives value before cycle ends non blocking gives value at start of new cycle.