Reader small image

You're reading from  FPGA Programming for Beginners

Product typeBook
Published inMar 2021
Reading LevelIntermediate
PublisherPackt
ISBN-139781789805413
Edition1st Edition
Languages
Tools
Right arrow
Author (1)
Frank Bruno
Frank Bruno
author image
Frank Bruno

Frank Bruno is an experienced high-performance design engineer specializing in FPGAs with some ASIC experience. He has experience working for companies like SpaceX, GM Cruise, Belvedere Trading, Allston Trading, and Number Nine. He is currently working as an FPGA engineer for Belvedere Trading.
Read more about Frank Bruno

Right arrow

Questions

  1. What are the advantages of an I2C bus?

    a) We can move large amounts of data quickly.

    b) We only need two wires to communicate.

    c) Multiple devices can be connected using only two wires.

    d) All of the above.

    e) Only (b) and (c).

  2. What would be the preferred order of preference when you require a memory?

    a) Use the IP catalog, infer, use xpm_memory

    b) Use xpm_memory, use the IP catalog, infer

    c) Infer, use xpm_memory, use the IP catalog

    d) Use the IP catalog, use xpm_memory, infer

  3. assign data = (data_en) ? 'z : '0;

    a) Infers a multiplier

    b) Infers a register

    c) Infers a tristate IO

  4. Gray coding is used in FIFOs.

    a) Always

    b) To pass counter information across clock domains in an asynchronous FIFO

    c) Only in synchronous FIFOs

The following code creates what kind of memory?

always @(posedge clk) begin
  if (wren) store[addr] <= din;
  dout <= store[addr];
end

a) Simple dual port

b) True dual port

c) Single port

d) ROM

...
lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
FPGA Programming for Beginners
Published in: Mar 2021Publisher: PacktISBN-13: 9781789805413

Author (1)

author image
Frank Bruno

Frank Bruno is an experienced high-performance design engineer specializing in FPGAs with some ASIC experience. He has experience working for companies like SpaceX, GM Cruise, Belvedere Trading, Allston Trading, and Number Nine. He is currently working as an FPGA engineer for Belvedere Trading.
Read more about Frank Bruno