Hello,
I have a question about toggle coverage.
In my case, there are many unused registers or wires that are affecting the toggle coverage score negatively.
Is it possible to automatically exclude registers or wires that are not used from toggle coverage?
My RTL code is as follows, Is it possible to automatically disable tb.top1.b and tb.top1.c without using an exclude file?
module top1;
reg a;
reg b;
reg [31:0] c;
initial
begin
#1 a=1'b0;
#1 a=1'b1;
#1 a=1'b0;
end
endmodule
module tb;
top1 top1();
endmodule