In reply to tsb_matumoto:
Hi,
With below change :
interface vif(); //
event trig;
initial begin
forever begin
$display(“*** initial ***”);
@(trig.triggered);
$display(“[%m] Triggered @%t”, $time);
end
end
endinterface //
I am able to see display statement.Don’t know the exact reason.