Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-20
/
20.4--timeformat.sv
blob: bf57b91369689493072bbb88f53cc45f96abc00c [
file
] [
log
] [
blame
]
/*
:name: timeformat_task
:description: $timeformat test
:should_fail: 0
:tags: 20.4
:type: simulation parsing
*/
`timescale 1 fs / 1 fs
module top();
initial begin
$timeformat(-9, 5, "ns", 10);
$display("%t", $realtime);
end
endmodule