Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
14189593b2851f86e27e0604e4a37a0d9629aa5c
/
.
/
src
/
Testcases
/
Google
/
chapter-21
/
21.3--fflush.sv
blob: c3f5f47f566625cfe429e93ce05395e402bc713c [
file
] [
log
] [
blame
]
/*
:name: fflush_task
:description: $fflush test
:should_fail: 0
:tags: 21.3
:type: simulation parsing
*/
module
top
();
initial
begin
int
fd
;
fd
=
$fopen
(
"tmp.txt"
,
"w"
);
$fflush
();
$fclose
(
fd
);
end
endmodule