logo

Crowdly

Browser

Додати до Chrome

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

Шукаєте відповіді та рішення тестів для ECE 564 (001) Fall 2025 ASIC and FPGA Design with Verilog? Перегляньте нашу велику колекцію перевірених відповідей для ECE 564 (001) Fall 2025 ASIC and FPGA Design with Verilog в moodle-courses2527.wolfware.ncsu.edu.

Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!

Consider the following code fragment:

     U1 thingy (clock, A, B);

     U2 thingy (clock, C, D);

The interfacing logic connected to A and B has very different timing than the interfacing logic connected to C and D.  Choose a short script fragment that ensures this will synthesize correctly including the actual compile(s). 

0%
0%
Переглянути це питання

Both of these questions apply to the following code implemented exactly as described.

module A1 (input clock, E, F; output reg A, B);

wire C

always@(posedge clock)

   begin

    A <= C;

    B <= F;

   end

assign C = E | F;

endmodule

Each gate has a delay from its input to output as given as {1 : 2 : 3}, t_Cp_Q is {2 : 3 : 5} the clock skew is 1 ns, the flip-flop setup time is 1 ns and the hold time 1 ns.  Format above is {min : typical : max}. 

This module is part of a hierarchy 

     A1 U1 (clock, E, F, A, B);

     A2 U2 (clock, A, B, E, F);

A2 is another module with a clock two inputs and two outputs.  If you were synthesizing A2 by itself, (i.e. A1 is not being synthesized in the same run) what vales should be assigned for input delay and output delay for the ports of module A2.  Ignore any interconnect delay.

 Give your answers as integers

 Inputs delay

Переглянути це питання

What does the following line of Verilog code do? 

\\ synopsys off

Переглянути це питання

Choose the logic described by the following code fragment.  Note the use of blocking assignment.  All variables are one bit wide.

 

always@(posedge clock)

  begin

     C = A | B;

E = C & D;    

     D = C ^ A;

  end

Переглянути це питання

If  “enable” is high around 30% of the time, and the code below is synthesized, which of the following will have the lowest power consumption. 

0%
0%
0%
0%
Переглянути це питання

Complete the missing phrase.  In comparison with standard cell ASICs, FPGAs are limited in all resources but it is particularly important when designing FPGAs to be very aware of the number of _______ being specified in the design.

Переглянути це питання

If the following logic is built exactly as described, derive a test vector sensitizes a stuck-at-1 fault at c and propagates it to the output h.

wire a, b, c, d, e, f, g, h;

assign f = a ? b : c;

assign g = d | f;

assign h = e & g;

Переглянути це питання

You are designing a security chip for use in a high volume battery-driven application.  Special logic structures are required in order to make the chip secure against reverse engineering its logic details.  What design style are you like to use? 

Переглянути це питання

Choose the netlist that corresponds to  the design described by the following code fragment.   In XOR(A,B,C) B and C are inputs, A is an output

function foo (A, B) ;

input A, B;

begin

  foo = A | B;

end

always@(posedge clock) D <= foo(D, E);

Переглянути це питання

The main purpose of adding Design For Test (DFT) features is to help debug the chips as they come off the factory floor? 

100%
0%
Переглянути це питання

Хочете миттєвий доступ до всіх перевірених відповідей на moodle-courses2527.wolfware.ncsu.edu?

Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!

Browser

Додати до Chrome