Skip to the selected question
ASIC.FYI

ASIC Question Bank

1,000+ hardware interview questions
DescriptionQ1043
Page ↗
Q1043DVDesignASIC interview problem

Always_comb

TechniquesSystemVerilogBasic scheduling
DifficultyEasy
TopicSV
LanguageSystemVerilog
Format4 choices
01

Problem

Which statement about always_comb is correct?

Starting declarationSystemVerilog
logic a, b, hidden_enable, y;

function automatic logic helper(input logic value);
  return value & hidden_enable;
endfunction

always_comb y = a & helper(b);
02

Answer choices (4)