blob: 78c829458d5347f045481ab9255a4327e11e7057 [file] [log] [blame]
/*
:name: write_task
:description: $write test
:should_fail: 0
:tags: 21.2
:type: simulation parsing
*/
module top();
initial begin
int val = 1234;
$write(val);
$writeb(val);
$writeo(val);
$writeh(val);
end
endmodule