logo

Crowdly

Browser

Add to Chrome

ECE 564 (001) Fall 2025 ASIC and FPGA Design with Verilog

Looking for ECE 564 (001) Fall 2025 ASIC and FPGA Design with Verilog test answers and solutions? Browse our comprehensive collection of verified answers for ECE 564 (001) Fall 2025 ASIC and FPGA Design with Verilog at moodle-courses2527.wolfware.ncsu.edu.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

What logic function does the following code fragment describe?

always@(posedge clock)

     begin

          for (i=8; i>=1; i=i-1)

               A[i] = A[i-1];

          A[0] = In;

     end

View this question

If the input to this logic is In = 4’b0101 which is the correct output?

wire [3:0] out, In;

assign out = {&In, In[In[1:0]], {2{In[2]}}};

View this question

After the initial compile, you should always use compile –incremental for any further runs that might change the logic. 

0%
0%
View this question

The constraints specified in the class synthesis script were:

View this question

What logic function does the following code fragment describe?

wire [7:0] A, B;

wire [15:0] D;

wire [2:0] C;

assign D = {B,B} << C;

assign A=D[15:8];

View this question

The primary objective of the Design Compiler synthesis script presented in class is to:

View this question

We have to add four numbers (A, B, C, D).Which of the following Verilog fragments will produce the fastest logic?

(There is more than one correct answer. You must select both.)

0%
0%
0%
0%
View this question

Which of the following statements are most correct?

View this question

Which alternative will the following code fragment synthesize to?

reg [3:0] A, B, C;

always@(*)

  C = {{{2{A[3]}},A} >> 1} | {B[3:2],{2{B[0]}}};

View this question

Consider the following code. It is the only code in the module.

always@(posedge clock)

begin A <= C & D; end

always@(*)

E = A+B;

If it is synthesized with the following constraints

Create_clock -period 8 -waveform {0 4} –name clock

set_clock_skew -uncertainty 1.0 clock

set_input_delay 1.0 -clock clock all_inputs() – clock

set_output_delay 2.0 -clock clock all_outputs() – clock

Flip flop tck-Q delay is 1 ns, setup time is 1 ns, and hold time 1 ns, all logic gate delays vary between 1 and 2 ns.

What is the maximum allowed delay for the logic A+B? Give your answer in ns without the units.

View this question

Want instant access to all verified answers on moodle-courses2527.wolfware.ncsu.edu?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome