Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-21
/
21.4--readmemh.sv
blob: 5c77efc6ae0d277856ae88ad1dbf10ce1e39b908 [
file
] [
log
] [
blame
]
/*
:name: readmemh_task
:description: $readmemh test
:should_fail: 0
:tags: 21.4
:type: parsing
*/
module
top
();
logic
[
31
:
0
]
mem1
[
1023
:
0
];
string
fname1
=
"test1.mem"
;
initial
begin
$readmemh
(
fname1
,
mem1
);
end
endmodule