Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
d4bc91e228686cd8ec9eee019b4f0db9b7bc26cb
/
.
/
SVIncCompil
/
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