1.

Which of the following option is completely legal, given that a and b are two UNSIGNED type signals?

A. x <= a + b; y <= a b;
B. x <= a OR b; y <= a AND b;
C. x <= a + b; y <= a OR b;
D. x <= a OR b; y <= a + b;
Answer» B. x <= a OR b; y <= a AND b;


Discussion

No Comment Found