hi
i'm writing coverage and i need to cross 3 coverpoints as following:
a_idx: coverpoint a {
bins a_idx[] = {[0:15]};
}
b_idx: coverpoint b {
bins b_idx[] = {[0:15]};
}
c_idx: coverpoint c {
bins c_idx[] = {[0:123]};
}
cross_a_b_c: cross a_idx , b_idx , c_idx;
I want to create a single bin for duplicate a/b indexes e.g:
this should be 1 bin:
c b a
0 1 0
0 0 1
how is this done?
thanks