Draw the hardware structures that will be inferred by typical synthesizers from the code excerpts that follow.

Question:

Draw the hardware structures that will be inferred by typical synthesizers from the code excerpts that follow. If any ambiguities exist in the code, mention what you are assuming. Show optimized and unoptimized hardware.

(a) always @(a)
begin
case(a)
0: b = 2;
1: b = 0;
2: b = 3;
3: b = 1;
endcase
end

(b) if((arg1 > arg2)&&(arg1 > arg3))

result <= arg1;

else

result <= 0;

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question

Digital Systems Design Using Verilog

ISBN: 978-1285051079

1st edition

Authors: Charles Roth, Lizy K. John, Byeong Kil Lee

Question Posted: