blob: dd6e28102041f87cbd599b67f12bd1a9eb3472e8 [file] [log] [blame]
/*
:name: display_task
:description: $display test
:should_fail: 0
:tags: 21.2
:type: simulation parsing
*/
module top();
initial begin
int val = 1234;
$display(val);
$displayb(val);
$displayo(val);
$displayh(val);
end
endmodule