blob: ed6bc0c0ceb3cf1462eeff415f74fbd0c264b94f [file] [log] [blame]
/*
:name: monitor_task
:description: $monitor test
:should_fail: 0
:tags: 21.2
:type: simulation parsing
*/
module top();
int a;
initial begin
$monitoron;
$monitor(a);
$monitorb(a);
$monitoro(a);
$monitorh(a);
$monitoroff;
end
endmodule