Skip to the selected question
ASIC.FYI

ASIC Question Bank

1,000+ hardware interview questions
DescriptionQ872
Page ↗
Q872DVASIC interview problem

Cross-bin filtering

TechniquesSystemVerilogAdvanced coverage
DifficultyMedium
TopicFunctional Coverage
LanguageSystemVerilog
Format4 choices
01

Problem

How many cross bins remain in the coverage goal?

Starting declarationSystemVerilog
cp_a: coverpoint a { bins a0={0}; bins a1={1}; }
cp_b: coverpoint b { bins b0={0}; bins b1={1}; }
x: cross cp_a, cp_b {
  ignore_bins zero_zero =
    binsof(cp_a) intersect {0} && binsof(cp_b) intersect {0};
}
02

Answer choices (4)