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