Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-11
/
11.10.1--string_copy.sv
blob: ed4fe7fc35db2eb000ca7a455b1fc277bd8a6856 [
file
] [
log
] [
blame
]
/*
:name: string_copy
:description: string copy test
:should_fail: 0
:tags: 11.10.1
:type: simulation parsing
*/
module
top
();
bit
[
8
*
14
:
1
]
a
;
bit
[
8
*
14
:
1
]
b
;
initial
begin
a
=
"Test"
;
b
=
a
;
$display
(
":assert:('%s' == '%s')"
,
a
,
b
);
end
endmodule