blob: a943cc57ea87dfa31151cdd61612ba865ee63c41 [file] [log] [blame]
/*
:name: fmonitor_task
:description: $fmonitor test
:should_fail: 0
:tags: 21.3
:type: simulation parsing
*/
module top();
logic a;
int fd;
string str = "abc";
initial begin
fd = $fopen("tmp.txt", "w");
$fmonitor(fd, a);
$fmonitorb(fd, a);
$fmonitoro(fd, a);
$fmonitorh(fd, a);
end
final
$fclose(fd);
endmodule