|
06 Feb 2005
a. Blocking assignment looks like “=” and should be used in
combinational logic.
b. Non-blocking assignment looks like “<=” and should be used for
sequential logic, namely anywhere you have an always @
(posedge Clock)
c. Note that these kinds of assignment refer only to always blocks.
The assign keyword always requires a simple “=”.
|