blob: 129256df1b5ba340c7aae107341c1d708e6631c6 [file] [log] [blame]
/*
:name: strobe_task
:description: $strobe test
:should_fail: 0
:tags: 21.2
:type: simulation parsing
*/
module top();
logic clk;
int a;
always @(posedge clk) begin
$strobe(a);
$strobeb(a);
$strobeo(a);
$strobeh(a);
end
endmodule