blob: 11a56716589f9d1a2e1a76946e0a76aa57d245c2 [file] [log] [blame]
/*
:name: fdisplay_task
:description: $fdisplay test
:should_fail: 0
:tags: 21.3
:type: simulation parsing
*/
module top();
int fd;
string str = "abc";
initial begin
fd = $fopen("tmp.txt", "w");
$fdisplay(fd, str);
$fdisplayb(fd, str);
$fdisplayo(fd, str);
$fdisplayh(fd, str);
end
final
$fclose(fd);
endmodule