Why is it that "if (2'b01 & 2'b10)..." doesn't run the true case?

| Tuesday, September 1, 2009


This is a popular coding error. You used the bit wise AND operator (&) where you meant to use the logical AND operator (&&).

0 comments:

Post a Comment