Skip to the selected question
ASIC.FYI

ASIC Question Bank

1,000+ hardware interview questions
DescriptionQ308
Page ↗
Q308DVDesignASIC interview problem

Packages

TechniquesSystemVerilogElaboration and reuse
DifficultyEasy
TopicSV
LanguageSystemVerilog
Format4 choices
01

Problem

Which statement about word_t is correct?

Starting declarationSystemVerilog
package p;
  parameter int W = 8;
  typedef logic [W-1:0] word_t;
endpackage
module m; p::word_t x; endmodule
02

Answer choices (4)