Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is wrong with the following code fragment?
always@(*)
begin
A = E ^ D;
if (C) E = ~A;
else E = D;
end
A should not be assigned like this. Unbuildable “wired-or” logic is implied.
The sensitivity list is incomplete.
Unintentional latches are being built.
There is combinational logic feedback, i.e. a “timing loop” or “arc”.
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!