Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
2b38692156ff2742b1c4c94d3b93df97f2145e0c
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-21
/
21.4--readmemb.sv
blob: bc91b8dc88c25808d2cb168319feed5912d705f0 [
file
]
/*
:name: readmemb_task
:description: $readmemb test
:should_fail: 0
:tags: 21.4
:type: parsing
*/
module
top
();
logic
[
31
:
0
]
mem0
[
1023
:
0
];
string
fname0
=
"test0.mem"
;
initial
begin
$readmemb
(
fname0
,
mem0
);
end
endmodule