DescriptionQ405
Q405DVASIC interview problem
Cross coverage
TechniquesSystemVerilogFunctional coverage
DifficultyMedium
TopicFunctional Coverage
LanguageSystemVerilog
Format4 choices
01
Problem
Before any filtering, how many cross bins are formed?
Starting declarationSystemVerilog
cp_a: coverpoint a { bins low = {[0:1]}; bins high = {[2:3]}; }
cp_b: coverpoint b { bins low = {[0:1]}; bins high = {[2:3]}; }
x_ab: cross cp_a, cp_b;02
