Hello,
Is there any shorter way to write unknown value check assertions on all signals of interface?
interface intf;
wire a;
wire b;
//c, d, e..
endinterface
property xcheck;
@(posedge clk)
//I want to avoid writing each individual signals
not $isunknown(a) &&
not $isunknown(b) &&
..
endproperty