DescriptionQ048
Q048DVDesignASIC interview problem
Type parameters
TechniquesSystemVerilogElaboration and reuse
DifficultyEasy
TopicSV
LanguageSystemVerilog
Format4 choices
01
Problem
What is the type of port a in this instance?
Module declarationSystemVerilog
module holder #(parameter type T = int) (input T a); endmodule
holder #(.T(logic [7:0])) u (.a(sig));02
