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